精品久久久久久亚洲精品_成人午夜网站_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日本高清_亚洲精品久久久久午夜福

      欧美中文在线观看| 国内精品久久久久影院优| 亚洲欧美国产77777| 国产深夜精品| 欧美日韩mp4| 久久国产欧美精品| 一区二区三区视频在线看| 国产日韩欧美高清免费| 欧美天堂亚洲电影院在线观看 | 久久综合国产精品| 午夜激情综合网| 亚洲美女淫视频| 樱花yy私人影院亚洲| 国产欧美韩日| 欧美午夜在线| 欧美77777| 久久久999| 亚洲免费一级电影| 99国产麻豆精品| 亚洲日本久久| 亚洲欧洲美洲综合色网| 尹人成人综合网| 国内精品久久久久伊人av| 国产精品久久久久久久浪潮网站| 欧美国产日韩精品| 久久综合伊人77777麻豆| 久久国产精品久久久| 欧美亚洲视频在线观看| 亚洲午夜免费视频| 亚洲一二三级电影| 亚洲欧美日韩精品久久奇米色影视| 一本大道久久a久久综合婷婷| 亚洲欧洲综合另类在线| 亚洲精品影院| 一本色道婷婷久久欧美| 亚洲美女区一区| 99精品视频免费在线观看| 夜夜嗨av色一区二区不卡| 一本色道久久综合亚洲精品不| 亚洲理论电影网| 在线亚洲一区二区| 亚洲欧美精品在线观看| 欧美在线免费视频| 裸体素人女欧美日韩| 狂野欧美性猛交xxxx巴西| 欧美精品免费播放| 欧美性做爰毛片| 国产一区二区在线免费观看| 国产一在线精品一区在线观看| 黄色影院成人| 亚洲国产经典视频| 一本久久a久久精品亚洲| 亚洲一区二区三区在线| 欧美在线视屏| 欧美精品久久一区二区| 欧美日一区二区三区在线观看国产免 | 国产一区二区三区在线免费观看 | 极品尤物一区二区三区| 亚洲国产美女| 精品福利电影| 亚洲欧洲精品天堂一级| 欧美一区二区三区播放老司机| 久久综合九色99| 国产精品久久久免费| 精品成人乱色一区二区| 亚洲视频一区二区免费在线观看| 久久九九久精品国产免费直播| 欧美风情在线观看| 国产欧美日韩综合一区在线播放| 亚洲激情影视| 欧美在线观看视频在线| 欧美日韩第一区| 依依成人综合视频| 亚洲一区二区综合| 欧美电影在线观看| 国产一区高清视频| 亚洲一区免费视频| 欧美日韩精品| 亚洲裸体在线观看| 久久综合给合久久狠狠狠97色69| 欧美日韩中文字幕日韩欧美| 在线精品亚洲| 久久国产直播| 国产女主播一区二区三区| 国产精品99久久久久久久久| 欧美高清在线一区| 激情综合色综合久久综合| 亚洲欧美激情一区二区| 国产精品国产三级国产a| 亚洲精品综合在线| 欧美高清视频www夜色资源网| 好看不卡的中文字幕| 久久国产天堂福利天堂| 国产区二精品视| 性欧美video另类hd性玩具| 欧美网站在线观看| 亚洲一区二区在线观看视频| 欧美精品播放| 9久re热视频在线精品| 欧美国产亚洲精品久久久8v| 亚洲欧洲日韩在线| 免费观看久久久4p| 亚洲精品美女久久久久| 免费在线成人av| 精品成人久久| 久热精品视频在线观看一区| 欧美色大人视频| 亚洲精品黄网在线观看| 亚洲一级黄色片| 国产精品乱码久久久久久| 亚洲精品一区二区在线| 欧美激情aⅴ一区二区三区| 在线观看日产精品| 久久久久久精| 欧美婷婷久久| 欧美一区二区性| 国内精品久久久久影院 日本资源| 亚洲欧美影音先锋| 国产精品欧美在线| 亚洲精品国产拍免费91在线| 欧美日韩国产综合视频在线| 亚洲黄色一区| 欧美久久久久| 亚洲字幕一区二区| 欧美色播在线播放| 欧美在线欧美在线| 黄色日韩精品| 欧美另类99xxxxx| 亚洲性人人天天夜夜摸| 国产精品视频yy9099| 久久亚洲精选| 亚洲美女精品一区| 国产精品视频自拍| 久久精品盗摄| 一本不卡影院| 国产麻豆日韩| 老牛国产精品一区的观看方式| 亚洲国产成人在线视频| 欧美日韩亚洲综合一区| 亚洲性夜色噜噜噜7777| 国产亚洲高清视频| 欧美精品电影在线| 午夜精品福利在线观看| 国产一区成人| 欧美激情亚洲精品| 亚洲欧美成人| 亚洲国产精品久久人人爱蜜臀 | 欧美在线免费视屏| 亚洲精品美女久久7777777| 国产一区二区三区高清播放| 男女激情视频一区| 午夜精品成人在线| 亚洲第一页在线| 欧美午夜激情视频| 免费观看国产成人| 亚洲综合色网站| 亚洲黑丝在线| 国产视频一区欧美| 欧美色图首页| 欧美激情第三页| 久久精品女人的天堂av| 一区二区成人精品| 好男人免费精品视频| 国产欧美一区二区精品秋霞影院| 欧美成人午夜视频| 亚洲欧美日韩精品久久久久| 亚洲激情二区| 国产亚洲人成a一在线v站| 国产欧美精品va在线观看| 欧美激情一区二区三区在线| 久久久亚洲高清| 久久成人人人人精品欧| 欧美伊久线香蕉线新在线| 亚洲调教视频在线观看| 日韩系列欧美系列| 亚洲精品一区二区三区樱花 | 欧美一区二区日韩| 亚洲在线免费| 亚洲女与黑人做爰| 亚洲欧美日韩天堂| 欧美在线资源| 久久超碰97人人做人人爱| 性感少妇一区| 久久不射2019中文字幕| 卡一卡二国产精品| 麻豆精品视频在线观看| 久久免费黄色| 久久频这里精品99香蕉| 亚洲精品国产精品国自产观看浪潮| 亚洲美女视频在线免费观看| 日韩视频欧美视频| 亚洲色诱最新| 亚洲精品社区| 小处雏高清一区二区三区| 亚洲欧美清纯在线制服| 欧美中文字幕在线观看| 久久精品一区蜜桃臀影院| 欧美成人午夜激情| 欧美三级视频在线| 国产欧美日韩免费|