精品久久久久久亚洲精品_成人午夜网站_www日本高清_亚洲精品久久久久午夜福

Form controls

Give textual form controls like s and

<div class="mb-3">
<label for="exampleFormControlInput1" class="form-label">Email address</label>
<input type="email" class="form-control" id="exampleFormControlInput1" placeholder="name@example.com">
</div>
<div class="mb-3">
<label for="exampleFormControlTextarea1" class="form-label">Example textarea</label>
<textarea class="form-control" id="exampleFormControlTextarea1" rows="3"></textarea>
</div>

Sizing

Set heights using classes like .form-control-lg and .form-control-sm.

<input class="form-control form-control-lg" type="text" placeholder=".form-control-lg" aria-label=".form-control-lg example">
<input class="form-control" type="text" placeholder="Default input" aria-label="default input example">
<input class="form-control form-control-sm" type="text" placeholder=".form-control-sm" aria-label=".form-control-sm example">

Disabled

Add the disabled boolean attribute on an input to give it a grayed out appearance and remove pointer events.

<input class="form-control" type="text" placeholder="Disabled input" aria-label="Disabled input example" disabled>
<input class="form-control" type="text" placeholder="Disabled readonly input" aria-label="Disabled input example" disabled readonly>

Readonly

Add the readonly boolean attribute on an input to prevent modification of the input’s value. Read-only inputs appear lighter (just like disabled inputs), but retain the standard cursor.

<input class="form-control" type="text" placeholder="Readonly input here..." aria-label="readonly input example" readonly>

Readonly plain text

If you want to have <input readonly> elements in your form styled as plain text, use the .form-control-plaintext class to remove the default form field styling and preserve the correct margin and padding.

  <div class="mb-3 row">
<label for="staticEmail" class="col-sm-2 col-form-label">Email</label>
<div class="col-sm-10">
  <input type="text" readonly class="form-control-plaintext" id="staticEmail" value="email@example.com">
</div>
</div>
<div class="mb-3 row">
<label for="inputPassword" class="col-sm-2 col-form-label">Password</label>
<div class="col-sm-10">
  <input type="password" class="form-control" id="inputPassword">
</div>
</div>
<form class="row g-3">
<div class="col-auto">
<label for="staticEmail2" class="visually-hidden">Email</label>
<input type="text" readonly class="form-control-plaintext" id="staticEmail2" value="email@example.com">
</div>
<div class="col-auto">
<label for="inputPassword2" class="visually-hidden">Password</label>
<input type="password" class="form-control" id="inputPassword2" placeholder="Password">
</div>
<div class="col-auto">
<button type="submit" class="btn btn-primary mb-3">Confirm identity</button>
</div>
</form>

File input

<div class="mb-3">
<label for="formFile" class="form-label">Default file input example</label>
<input class="form-control" type="file" id="formFile">
</div>
<div class="mb-3">
<label for="formFileMultiple" class="form-label">Multiple files input example</label>
<input class="form-control" type="file" id="formFileMultiple" multiple>
</div>
<div class="mb-3">
<label for="formFileDisabled" class="form-label">Disabled file input example</label>
<input class="form-control" type="file" id="formFileDisabled" disabled>
</div>
<div class="mb-3">
<label for="formFileSm" class="form-label">Small file input example</label>
<input class="form-control form-control-sm" id="formFileSm" type="file">
</div>
<div>
<label for="formFileLg" class="form-label">Large file input example</label>
<input class="form-control form-control-lg" id="formFileLg" type="file">
</div>

Color

<label for="exampleColorInput" class="form-label">Color picker</label>
<input type="color" class="form-control form-control-color" id="exampleColorInput" value="#563d7c" title="Choose your color">

Datalists

Datalists allow you to create a group of <option>s that can be accessed (and autocompleted) from within an <input>. These are similar to <select> elements, but come with more menu styling limitations and differences. While most browsers and operating systems include some support for <datalist> elements, their styling is inconsistent at best.

Learn more about support for datalist elements.

<label for="exampleDataList" class="form-label">Datalist example</label>
<input class="form-control" list="datalistOptions" id="exampleDataList" placeholder="Type to search...">
<datalist id="datalistOptions">
<option value="San Francisco">
<option value="New York">
<option value="Seattle">
<option value="Los Angeles">
<option value="Chicago">
</datalist>

Sass

Variables

$input-* are shared across most of our form controls (and not buttons).

$input-padding-y:                       $input-btn-padding-y;
$input-padding-x:                       $input-btn-padding-x;
$input-font-family:                     $input-btn-font-family;
$input-font-size:                       $input-btn-font-size;
$input-font-weight:                     $font-weight-base;
$input-line-height:                     $input-btn-line-height;

$input-padding-y-sm:                    $input-btn-padding-y-sm;
$input-padding-x-sm:                    $input-btn-padding-x-sm;
$input-font-size-sm:                    $input-btn-font-size-sm;

$input-padding-y-lg:                    $input-btn-padding-y-lg;
$input-padding-x-lg:                    $input-btn-padding-x-lg;
$input-font-size-lg:                    $input-btn-font-size-lg;

$input-bg:                              $white;
$input-disabled-bg:                     $gray-200;
$input-disabled-border-color:           null;

$input-color:                           $body-color;
$input-border-color:                    $gray-400;
$input-border-width:                    $input-btn-border-width;
$input-box-shadow:                      $box-shadow-inset;

$input-border-radius:                   $border-radius;
$input-border-radius-sm:                $border-radius-sm;
$input-border-radius-lg:                $border-radius-lg;

$input-focus-bg:                        $input-bg;
$input-focus-border-color:              tint-color($component-active-bg, 50%);
$input-focus-color:                     $input-color;
$input-focus-width:                     $input-btn-focus-width;
$input-focus-box-shadow:                $input-btn-focus-box-shadow;

$input-placeholder-color:               $gray-600;
$input-plaintext-color:                 $body-color;

$input-height-border:                   $input-border-width * 2;

$input-height-inner:                    add($input-line-height * 1em, $input-padding-y * 2);
$input-height-inner-half:               add($input-line-height * .5em, $input-padding-y);
$input-height-inner-quarter:            add($input-line-height * .25em, $input-padding-y / 2);

$input-height:                          add($input-line-height * 1em, add($input-padding-y * 2, $input-height-border, false));
$input-height-sm:                       add($input-line-height * 1em, add($input-padding-y-sm * 2, $input-height-border, false));
$input-height-lg:                       add($input-line-height * 1em, add($input-padding-y-lg * 2, $input-height-border, false));

$input-transition:                      border-color .15s ease-in-out, box-shadow .15s ease-in-out;

$form-label-* and $form-text-* are for our <label>s and .form-text component.

$form-label-margin-bottom:              .5rem;
$form-label-font-size:                  null;
$form-label-font-style:                 null;
$form-label-font-weight:                null;
$form-label-color:                      null;
$form-text-margin-top:                  .25rem;
$form-text-font-size:                   $small-font-size;
$form-text-font-style:                  null;
$form-text-font-weight:                 null;
$form-text-color:                       $text-muted;
返回頂部
精品久久久久久亚洲精品_成人午夜网站_www日本高清_亚洲精品久久久久午夜福

      国产精品主播| 久久久久国产一区二区三区| 国产精品一区二区欧美| 久久国产精品免费一区| 夜夜嗨av一区二区三区网页 | 欧美激情一区二区三区不卡| 亚洲主播在线播放| 亚洲精品一区二区网址| 永久555www成人免费| 国产精品视频一区二区高潮| 欧美激情第9页| 久久综合色88| 久久精品国产清自在天天线| 亚洲欧美久久| 亚洲午夜国产成人av电影男同| 亚洲国产片色| 亚洲国产一区在线观看| 国产一区二区三区四区hd| 国产精品福利影院| 国产精品成人av性教育| 欧美性做爰猛烈叫床潮| 欧美日韩亚洲高清一区二区| 欧美精选一区| 欧美电影免费观看高清完整版| 久久亚洲精品中文字幕冲田杏梨| 欧美一区二区在线| 久久aⅴ国产欧美74aaa| 久久久女女女女999久久| 久久精品国产清高在天天线| 久久精品亚洲| 免费亚洲视频| 欧美日韩亚洲一区二区| 国产精品每日更新| 国产日韩综合| 伊人色综合久久天天| 亚洲国产日韩在线一区模特| 亚洲人成网站影音先锋播放| 亚洲免费激情| 亚洲欧美另类中文字幕| 久久精品成人一区二区三区| 久久精品日产第一区二区| 久久综合伊人| 欧美日韩国产麻豆| 国产精品最新自拍| 亚洲大片免费看| 99国产精品99久久久久久| 亚洲一区二区视频在线| 欧美一区二区私人影院日本 | 91久久国产综合久久蜜月精品| 日韩亚洲欧美精品| 欧美一区二区免费| 老司机一区二区| 国产精品v亚洲精品v日韩精品| 国内精品久久久久久| 最新中文字幕亚洲| 亚洲综合色激情五月| 久久精品免费电影| 欧美日韩免费观看一区二区三区| 国产精品一区二区在线观看网站| 在线观看国产精品网站| 亚洲性视频网站| 免费亚洲一区| 国产日韩欧美三区| 99re视频这里只有精品| 久久天堂国产精品| 国产精品二区影院| 99精品免费视频| 老**午夜毛片一区二区三区| 欧美性淫爽ww久久久久无| 亚洲国产成人精品女人久久久 | 久久欧美肥婆一二区| 国产精品入口66mio| 亚洲精选一区二区| 老司机免费视频一区二区| 国产精品久久久久久久久| 亚洲国产精品久久久久久女王| 亚洲免费在线观看视频| 欧美日韩视频在线一区二区观看视频 | 久久国产精品99国产精| 欧美日韩一级视频| 99精品99| 欧美日韩国产综合视频在线观看| 影音先锋中文字幕一区二区| 欧美专区在线观看一区| 国产欧美日韩视频一区二区| 在线视频欧美一区| 欧美激情欧美狂野欧美精品| 亚洲精美视频| 欧美成人午夜77777| 激情成人综合| 另类人畜视频在线| 在线看国产日韩| 免费观看成人网| 亚洲国产精品传媒在线观看| 久久这里只有| 亚洲国产欧美日韩另类综合| 欧美成年人网站| 亚洲日本成人女熟在线观看| 欧美日本三级| 亚洲一级黄色av| 国产农村妇女精品一二区| 欧美伊人久久| 一区二区在线不卡| 欧美+亚洲+精品+三区| 亚洲精选一区二区| 欧美色综合网| 亚洲欧美成人一区二区在线电影 | 国产农村妇女精品| 欧美中在线观看| 亚洲成人影音| 欧美日韩精品欧美日韩精品一| 亚洲无吗在线| 国产午夜一区二区三区| 免费在线观看日韩欧美| 亚洲人体影院| 国产精品视频在线观看| 老司机凹凸av亚洲导航| 亚洲乱码国产乱码精品精天堂| 欧美日韩在线播| 久久精品亚洲一区二区三区浴池| 悠悠资源网亚洲青| 欧美日韩综合视频| 久久久久国产精品www| 亚洲精品日韩欧美| 国产精品永久免费视频| 免费观看国产成人| 亚洲一区视频| 亚洲精品1234| 国产色产综合产在线视频| 欧美激情一区二区久久久| 香蕉亚洲视频| 一区二区三欧美| 1024成人| 国产日韩欧美综合精品| 欧美三级黄美女| 久久一区亚洲| 欧美影院在线| 一区二区三区国产精品| 在线日韩中文| 国产欧美在线视频| 欧美视频第二页| 欧美电影在线观看| 久久精品国产99国产精品| 一区二区三区日韩在线观看| 亚洲国产欧美久久| 国产日产精品一区二区三区四区的观看方式 | 日韩亚洲视频在线| 136国产福利精品导航网址应用| 国产精品少妇自拍| 欧美日韩视频免费播放| 欧美成人综合网站| 久久只有精品| 久久野战av| 久久久久久穴| 久久国产福利| 久久精品夜夜夜夜久久| 欧美一区二区性| 欧美中文字幕在线观看| 午夜亚洲福利| 欧美在线日韩精品| 亚洲欧美日韩一区二区三区在线观看| 一本色道久久加勒比精品| 日韩亚洲欧美综合| 99在线|亚洲一区二区| 亚洲人妖在线| 亚洲午夜精品视频| 亚洲欧美日韩一区| 久久成人免费网| 久久视频在线免费观看| 久久夜色撩人精品| 六月婷婷久久| 欧美大片一区二区| 欧美日韩大片一区二区三区| 欧美日韩国产影院| 国产精品久久久久久久久久免费 | 欧美屁股在线| 国产精品视频一| 亚洲视频在线观看| 亚洲国产综合91精品麻豆| 日韩视频一区二区三区在线播放 | 欧美亚洲综合另类| 午夜精品99久久免费| 亚洲欧美日韩国产另类专区| 亚洲欧美日韩专区| 久久精品一区四区| 蜜桃久久精品乱码一区二区| 美女视频网站黄色亚洲| 欧美精品日韩精品| 欧美视频在线一区二区三区| 国产精品毛片a∨一区二区三区| 国产精品大片| 国产一区二区你懂的| 影音先锋亚洲一区| 一本一本久久a久久精品综合妖精| 亚洲午夜精品| 鲁大师成人一区二区三区| 欧美激情乱人伦| 国产精品乱人伦一区二区| 一区二区三区在线观看国产| 亚洲欧洲一区二区在线观看|