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

Input group

Easily extend form controls by adding text, buttons, or button groups on either side of textual inputs, custom selects, and custom file inputs.

Basic example

Place one add-on or button on either side of an input. You may also place one on both sides of an input. Remember to place <label>s outside the input group.

@
@example.com
https://example.com/users/
$ .00
@
With textarea
<div class="input-group mb-3">
<span class="input-group-text" id="basic-addon1">@</span>
<input type="text" class="form-control" placeholder="Username" aria-label="Username" aria-describedby="basic-addon1">
</div>

<div class="input-group mb-3">
<input type="text" class="form-control" placeholder="Recipient's username" aria-label="Recipient's username" aria-describedby="basic-addon2">
<span class="input-group-text" id="basic-addon2">@example.com</span>
</div>

<label for="basic-url" class="form-label">Your vanity URL</label>
<div class="input-group mb-3">
<span class="input-group-text" id="basic-addon3">https://example.com/users/</span>
<input type="text" class="form-control" id="basic-url" aria-describedby="basic-addon3">
</div>

<div class="input-group mb-3">
<span class="input-group-text">$</span>
<input type="text" class="form-control" aria-label="Amount (to the nearest dollar)">
<span class="input-group-text">.00</span>
</div>

<div class="input-group mb-3">
<input type="text" class="form-control" placeholder="Username" aria-label="Username">
<span class="input-group-text">@</span>
<input type="text" class="form-control" placeholder="Server" aria-label="Server">
</div>

<div class="input-group">
<span class="input-group-text">With textarea</span>
<textarea class="form-control" aria-label="With textarea"></textarea>
</div>

Wrapping

Input groups wrap by default via flex-wrap: wrap in order to accommodate custom form field validation within an input group. You may disable this with .flex-nowrap.

@
<div class="input-group flex-nowrap">
<span class="input-group-text" id="addon-wrapping">@</span>
<input type="text" class="form-control" placeholder="Username" aria-label="Username" aria-describedby="addon-wrapping">
</div>

Sizing

Add the relative form sizing classes to the .input-group itself and contents within will automatically resize—no need for repeating the form control size classes on each element.

Sizing on the individual input group elements isn’t supported.

Small
Default
Large
<div class="input-group input-group-sm mb-3">
<span class="input-group-text" id="inputGroup-sizing-sm">Small</span>
<input type="text" class="form-control" aria-label="Sizing example input" aria-describedby="inputGroup-sizing-sm">
</div>

<div class="input-group mb-3">
<span class="input-group-text" id="inputGroup-sizing-default">Default</span>
<input type="text" class="form-control" aria-label="Sizing example input" aria-describedby="inputGroup-sizing-default">
</div>

<div class="input-group input-group-lg">
<span class="input-group-text" id="inputGroup-sizing-lg">Large</span>
<input type="text" class="form-control" aria-label="Sizing example input" aria-describedby="inputGroup-sizing-lg">
</div>

Checkboxes and radios

Place any checkbox or radio option within an input group’s addon instead of text. We recommend adding .mt-0 to the .form-check-input when there’s no visible text next to the input.

<div class="input-group mb-3">
<div class="input-group-text">
<input class="form-check-input mt-0" type="checkbox" value="" aria-label="Checkbox for following text input">
</div>
<input type="text" class="form-control" aria-label="Text input with checkbox">
</div>

<div class="input-group">
<div class="input-group-text">
<input class="form-check-input mt-0" type="radio" value="" aria-label="Radio button for following text input">
</div>
<input type="text" class="form-control" aria-label="Text input with radio button">
</div>

Multiple inputs

While multiple <input>s are supported visually, validation styles are only available for input groups with a single <input>.

First and last name
<div class="input-group">
<span class="input-group-text">First and last name</span>
<input type="text" aria-label="First name" class="form-control">
<input type="text" aria-label="Last name" class="form-control">
</div>

Multiple addons

Multiple add-ons are supported and can be mixed with checkbox and radio input versions.

$ 0.00
$ 0.00
<div class="input-group mb-3">
<span class="input-group-text">$</span>
<span class="input-group-text">0.00</span>
<input type="text" class="form-control" aria-label="Dollar amount (with dot and two decimal places)">
</div>

<div class="input-group">
<input type="text" class="form-control" aria-label="Dollar amount (with dot and two decimal places)">
<span class="input-group-text">$</span>
<span class="input-group-text">0.00</span>
</div>

Button addons

<div class="input-group mb-3">
<button class="btn btn-outline-secondary" type="button" id="button-addon1">Button</button>
<input type="text" class="form-control" placeholder="" aria-label="Example text with button addon" aria-describedby="button-addon1">
</div>

<div class="input-group mb-3">
<input type="text" class="form-control" placeholder="Recipient's username" aria-label="Recipient's username" aria-describedby="button-addon2">
<button class="btn btn-outline-secondary" type="button" id="button-addon2">Button</button>
</div>

<div class="input-group mb-3">
<button class="btn btn-outline-secondary" type="button">Button</button>
<button class="btn btn-outline-secondary" type="button">Button</button>
<input type="text" class="form-control" placeholder="" aria-label="Example text with two button addons">
</div>

<div class="input-group">
<input type="text" class="form-control" placeholder="Recipient's username" aria-label="Recipient's username with two button addons">
<button class="btn btn-outline-secondary" type="button">Button</button>
<button class="btn btn-outline-secondary" type="button">Button</button>
</div>

Buttons with dropdowns

<div class="input-group mb-3">
<button class="btn btn-outline-secondary dropdown-toggle" type="button" data-bs-toggle="dropdown" aria-expanded="false">Dropdown</button>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Action</a></li>
<li><a class="dropdown-item" href="#">Another action</a></li>
<li><a class="dropdown-item" href="#">Something else here</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="#">Separated link</a></li>
</ul>
<input type="text" class="form-control" aria-label="Text input with dropdown button">
</div>

<div class="input-group mb-3">
<input type="text" class="form-control" aria-label="Text input with dropdown button">
<button class="btn btn-outline-secondary dropdown-toggle" type="button" data-bs-toggle="dropdown" aria-expanded="false">Dropdown</button>
<ul class="dropdown-menu dropdown-menu-end">
<li><a class="dropdown-item" href="#">Action</a></li>
<li><a class="dropdown-item" href="#">Another action</a></li>
<li><a class="dropdown-item" href="#">Something else here</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="#">Separated link</a></li>
</ul>
</div>

<div class="input-group">
<button class="btn btn-outline-secondary dropdown-toggle" type="button" data-bs-toggle="dropdown" aria-expanded="false">Dropdown</button>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Action before</a></li>
<li><a class="dropdown-item" href="#">Another action before</a></li>
<li><a class="dropdown-item" href="#">Something else here</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="#">Separated link</a></li>
</ul>
<input type="text" class="form-control" aria-label="Text input with 2 dropdown buttons">
<button class="btn btn-outline-secondary dropdown-toggle" type="button" data-bs-toggle="dropdown" aria-expanded="false">Dropdown</button>
<ul class="dropdown-menu dropdown-menu-end">
<li><a class="dropdown-item" href="#">Action</a></li>
<li><a class="dropdown-item" href="#">Another action</a></li>
<li><a class="dropdown-item" href="#">Something else here</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="#">Separated link</a></li>
</ul>
</div>

Segmented buttons

<div class="input-group mb-3">
<button type="button" class="btn btn-outline-secondary">Action</button>
<button type="button" class="btn btn-outline-secondary dropdown-toggle dropdown-toggle-split" data-bs-toggle="dropdown" aria-expanded="false">
<span class="visually-hidden">Toggle Dropdown</span>
</button>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Action</a></li>
<li><a class="dropdown-item" href="#">Another action</a></li>
<li><a class="dropdown-item" href="#">Something else here</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="#">Separated link</a></li>
</ul>
<input type="text" class="form-control" aria-label="Text input with segmented dropdown button">
</div>

<div class="input-group">
<input type="text" class="form-control" aria-label="Text input with segmented dropdown button">
<button type="button" class="btn btn-outline-secondary">Action</button>
<button type="button" class="btn btn-outline-secondary dropdown-toggle dropdown-toggle-split" data-bs-toggle="dropdown" aria-expanded="false">
<span class="visually-hidden">Toggle Dropdown</span>
</button>
<ul class="dropdown-menu dropdown-menu-end">
<li><a class="dropdown-item" href="#">Action</a></li>
<li><a class="dropdown-item" href="#">Another action</a></li>
<li><a class="dropdown-item" href="#">Something else here</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="#">Separated link</a></li>
</ul>
</div>

Custom forms

Input groups include support for custom selects and custom file inputs. Browser default versions of these are not supported.

Custom select

<div class="input-group mb-3">
<label class="input-group-text" for="inputGroupSelect01">Options</label>
<select class="form-select" id="inputGroupSelect01">
<option selected>Choose...</option>
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>
</select>
</div>

<div class="input-group mb-3">
<select class="form-select" id="inputGroupSelect02">
<option selected>Choose...</option>
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>
</select>
<label class="input-group-text" for="inputGroupSelect02">Options</label>
</div>

<div class="input-group mb-3">
<button class="btn btn-outline-secondary" type="button">Button</button>
<select class="form-select" id="inputGroupSelect03" aria-label="Example select with button addon">
<option selected>Choose...</option>
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>
</select>
</div>

<div class="input-group">
<select class="form-select" id="inputGroupSelect04" aria-label="Example select with button addon">
<option selected>Choose...</option>
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>
</select>
<button class="btn btn-outline-secondary" type="button">Button</button>
</div>

Custom file input

<div class="input-group mb-3">
<label class="input-group-text" for="inputGroupFile01">Upload</label>
<input type="file" class="form-control" id="inputGroupFile01">
</div>

<div class="input-group mb-3">
<input type="file" class="form-control" id="inputGroupFile02">
<label class="input-group-text" for="inputGroupFile02">Upload</label>
</div>

<div class="input-group mb-3">
<button class="btn btn-outline-secondary" type="button" id="inputGroupFileAddon03">Button</button>
<input type="file" class="form-control" id="inputGroupFile03" aria-describedby="inputGroupFileAddon03" aria-label="Upload">
</div>

<div class="input-group">
<input type="file" class="form-control" id="inputGroupFile04" aria-describedby="inputGroupFileAddon04" aria-label="Upload">
<button class="btn btn-outline-secondary" type="button" id="inputGroupFileAddon04">Button</button>
</div>

Sass

Variables

$input-group-addon-padding-y:           $input-padding-y;
$input-group-addon-padding-x:           $input-padding-x;
$input-group-addon-font-weight:         $input-font-weight;
$input-group-addon-color:               $input-color;
$input-group-addon-bg:                  $gray-200;
$input-group-addon-border-color:        $input-border-color;
返回頂部
精品久久久久久亚洲精品_成人午夜网站_www日本高清_亚洲精品久久久久午夜福

      9000px;">

          99国产麻豆精品| 久久99深爱久久99精品| 久久久综合九色合综国产精品| 欧美色图在线观看| 色一情一伦一子一伦一区| 国产精品一区久久久久| 国产成人亚洲综合a∨婷婷| 激情综合五月天| 国产一区二区免费看| 国产精品一区二区三区四区| 久久99久久精品欧美| 蜜臀av性久久久久蜜臀aⅴ四虎| 亚洲不卡一区二区三区| 亚欧色一区w666天堂| 午夜精品福利一区二区蜜股av| 亚洲国产美女搞黄色| 亚洲国产wwwccc36天堂| 午夜av一区二区| 玖玖九九国产精品| 极品少妇一区二区| 国产一区二区三区高清播放| 岛国精品在线观看| 91福利视频久久久久| 日韩午夜精品电影| 欧美激情一区三区| 亚洲一区二区在线播放相泽 | 欧美草草影院在线视频| 久久久久久久综合日本| 国产精品乱子久久久久| 亚洲午夜一区二区| 久久精品国产精品亚洲红杏| 精品一区二区三区在线视频| 99久久婷婷国产精品综合| 欧美色综合影院| 久久久欧美精品sm网站 | 91碰在线视频| 日韩女优电影在线观看| 国产农村妇女毛片精品久久麻豆| 一区二区三区日韩在线观看| 青青草成人在线观看| 国产精品一区二区视频| 欧美日高清视频| 久久精品亚洲精品国产欧美 | 丝袜诱惑制服诱惑色一区在线观看 | 日韩视频中午一区| 亚洲女同一区二区| 久久成人综合网| 日本乱码高清不卡字幕| www精品美女久久久tv| 日韩理论片一区二区| 精品夜夜嗨av一区二区三区| 91久久线看在观草草青青| 久久久99精品免费观看| 一区二区理论电影在线观看| 国产乱国产乱300精品| 欧美精品乱码久久久久久| 欧美激情综合网| 韩国女主播一区二区三区| 欧美专区在线观看一区| 中文字幕av在线一区二区三区| 日本网站在线观看一区二区三区 | 久久综合久久综合久久综合| 亚洲成人av电影在线| 91同城在线观看| 欧美国产综合一区二区| 久久99日本精品| 在线成人免费观看| 亚洲二区视频在线| 欧美熟乱第一页| 一区二区三区在线不卡| 91一区二区三区在线观看| 国产免费久久精品| 国产91精品一区二区麻豆亚洲| 亚洲精品一区二区三区在线观看| 蜜桃视频一区二区三区| 91麻豆精品国产91久久久更新时间| 亚洲精品成人少妇| 99re这里只有精品视频首页| 亚洲国产成人一区二区三区| 国产盗摄视频一区二区三区| 日本一区二区视频在线观看| 国产sm精品调教视频网站| 26uuu欧美日本| 国产尤物一区二区| 国产日韩精品一区| 国产成人99久久亚洲综合精品| 国产日本亚洲高清| 成人黄色在线看| 亚洲欧美一区二区三区极速播放| 色综合中文字幕国产 | 久久综合视频网| 精品一区二区三区久久久| 久久综合99re88久久爱| 国产在线播放一区| 日本一区二区三区久久久久久久久不 | 精品国产电影一区二区| 国产v综合v亚洲欧| 国产精品毛片高清在线完整版| 99久久久国产精品免费蜜臀| 一区二区三区四区在线播放 | 国产精品护士白丝一区av| 91最新地址在线播放| 亚洲大片精品永久免费| 日韩欧美成人一区| 成人精品视频一区二区三区尤物| 中文字幕一区在线观看| 欧美日韩在线一区二区| 久久精品国产第一区二区三区| 日本一区二区三区国色天香| 在线观看亚洲一区| 国内精品自线一区二区三区视频| 中文字幕不卡一区| 欧美老女人在线| 国产黄人亚洲片| 一区二区高清免费观看影视大全| 3d成人动漫网站| 成人污视频在线观看| 日韩激情视频网站| 国产精品全国免费观看高清| 3atv一区二区三区| 一本到高清视频免费精品| 久久99精品国产| 亚洲国产日韩精品| 国产欧美一区二区精品仙草咪| 91福利国产精品| hitomi一区二区三区精品| 日韩高清电影一区| 亚洲婷婷综合久久一本伊一区| 日韩美一区二区三区| 欧美午夜一区二区三区| www.亚洲色图.com| 国产乱妇无码大片在线观看| 午夜精品成人在线视频| 国产亚洲女人久久久久毛片| 日韩三级视频在线看| 在线免费观看日韩欧美| 播五月开心婷婷综合| 国产在线麻豆精品观看| 日韩不卡一区二区三区 | 欧美精品乱码久久久久久| 欧美午夜宅男影院| 91老司机福利 在线| 麻豆成人av在线| 亚洲色图制服诱惑| 日本一区二区视频在线观看| 久久久国产精品不卡| 欧美成人aa大片| 日韩精品专区在线影院观看| 这里是久久伊人| 欧美一级生活片| 7777精品伊人久久久大香线蕉 | 国产欧美精品国产国产专区| 国产亚洲短视频| 国产欧美一区二区三区网站| 欧美不卡在线视频| 日韩精品一区二区三区中文精品| 欧美另类一区二区三区| 91精品欧美久久久久久动漫| 欧美精品免费视频| 欧美一区二区三区视频在线观看| 欧美绝品在线观看成人午夜影视| 91国在线观看| 欧美精品一二三区| 日韩一级完整毛片| 2020国产精品| 欧美激情一区二区三区四区| 国产精品嫩草影院com| 一区二区三区四区激情| 亚洲一本大道在线| 亚洲成人动漫精品| 久久不见久久见免费视频7| 国产真实精品久久二三区| 国产成人精品免费在线| 97se亚洲国产综合在线| 欧美无乱码久久久免费午夜一区 | 蜜桃在线一区二区三区| 成人国产在线观看| 欧美系列亚洲系列| 亚洲精品一区二区三区香蕉| 综合在线观看色| 日韩精品每日更新| 国产真实精品久久二三区| 色哟哟日韩精品| 日韩女同互慰一区二区| 国产精品国产三级国产| 午夜视频在线观看一区二区| 免费成人在线网站| 国产**成人网毛片九色| 在线看国产一区二区| 久久久久国产精品人| 一区二区三区四区在线免费观看| 日本va欧美va精品发布| av在线这里只有精品| 欧美一级理论片| 亚洲欧美日韩综合aⅴ视频| 日本美女视频一区二区| 99久久综合国产精品| 日韩无一区二区| 一区二区三区在线观看动漫| 国产麻豆欧美日韩一区|