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

輸入組合(Input group)

通過在文本輸入、自定義選擇和自定義文件輸入的任一側添加文本、按鈕或按鈕組,可以輕松擴展窗體控件。通過在文本輸入的任一側添加文本、按鈕或按鈕組(自定義),可以輕松擴展窗體控件

基本示例

在輸入的任一側放置一個附加組件或按鈕。也可以在輸入的兩側各放置一個。記住將label放在輸入組之外。

@
@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>

包裝

默認情況下,輸入組通過flex-wrap: wrap進行包裝,以便在輸入組中容納自定義表單字段驗證。您可以使用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

將相對窗體大小調整類添加到.input-group 。輸入組本身和其中的內容將自動調整大小,無需在每個元素上重復窗體控件大小調整類。

不支持對單個輸入組元素進行大小調整。

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>

復選框和單選按鈕

將任何復選框或單選選項放置在輸入組的加載項中,而不是文本中。當輸入旁邊沒有可見文本時,建議將.mt-0添加到.form-check-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>

多輸入框

雖然外觀上支持多個input,但驗證樣式僅適用于具有單個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>

多個附加組件

支持多個附加組件,可以與復選框和單選輸入版本混合使用。

$ 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>

附加按鈕

<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>

帶下拉列表的按鈕

<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>

分割按鈕

<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>

自定義表單

輸入組包括對自定義選擇和自定義文件輸入的支持。不支持瀏覽器默認版本。

自定義選擇

<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>

自定義文件輸入

<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视频一区二区| caoporm超碰国产精品| 国产成人精品1024| 成人av在线播放网址| 国产精品亚洲一区二区三区妖精| 狠狠v欧美v日韩v亚洲ⅴ| 日本大胆欧美人术艺术动态 | 成人免费毛片a| 国产在线不卡视频| 国产在线日韩欧美| 国产在线播放一区三区四| 久久精品久久99精品久久| 轻轻草成人在线| 久久99国产精品成人| 免费成人性网站| 国产在线日韩欧美| 成人一二三区视频| 在线亚洲一区观看| 欧美丰满高潮xxxx喷水动漫| 欧美一区二区三区电影| 精品国产3级a| 亚洲视频在线一区二区| 亚洲欧美日韩在线| 天天亚洲美女在线视频| 国产真实乱子伦精品视频| 国产精品夜夜嗨| 色综合天天天天做夜夜夜夜做| 色悠悠久久综合| 91精品国产入口在线| 久久日一线二线三线suv| 中文字幕一区二| 日韩电影在线观看电影| 久久99久久久久| 99久久99久久精品免费观看| 欧美在线免费观看视频| 精品国内二区三区| 亚洲欧美日韩久久| 麻豆精品一二三| 成人成人成人在线视频| 制服丝袜在线91| 中文字幕第一区二区| 五月婷婷综合激情| 成人av电影在线观看| 678五月天丁香亚洲综合网| 国产日韩精品久久久| 亚洲最大色网站| 成人在线综合网站| 在线电影国产精品| 国产精品美女久久久久久| 午夜影院久久久| 成人av先锋影音| 精品日韩一区二区| 亚洲小说欧美激情另类| 国产成人免费在线视频| 91精品国产综合久久国产大片| 国产精品久线在线观看| 狠狠网亚洲精品| 欧美日韩国产大片| 亚洲男人的天堂网| 成人av综合在线| 日韩欧美国产一二三区| 亚洲国产精品精华液网站| 91网站最新地址| 欧美高清在线一区| 国产精品综合在线视频| 欧美一级欧美三级| 视频在线在亚洲| 欧美日韩aaaaa| 亚洲国产日韩av| 色婷婷综合久久久久中文一区二区 | 一区二区三区四区国产精品| 成人性生交大片免费看在线播放| 欧美本精品男人aⅴ天堂| 日韩三级精品电影久久久| 国产精品麻豆久久久| 国内偷窥港台综合视频在线播放| 欧美性一区二区| 亚洲美女视频在线| 99久久伊人精品| 亚洲欧洲三级电影| 成人免费av资源| 中文字幕一区av| 97精品超碰一区二区三区| 日韩毛片一二三区| 色成年激情久久综合| 亚洲一区在线观看视频| 在线电影一区二区三区| 奇米影视一区二区三区| 精品精品国产高清a毛片牛牛| 精品一区二区三区在线播放视频| 久久夜色精品国产欧美乱极品| 国产在线精品免费| 色婷婷国产精品综合在线观看| 自拍偷拍亚洲欧美日韩| 色综合久久久久综合体| 午夜日韩在线观看| 精品国产sm最大网站免费看| 高清不卡在线观看| 一区二区高清视频在线观看| 欧美日韩在线精品一区二区三区激情| 无码av免费一区二区三区试看| 91精品欧美一区二区三区综合在 | 国产精品久久福利| 欧美视频一区二区三区在线观看| 丝袜国产日韩另类美女| 精品国产123| 色综合咪咪久久| 奇米色777欧美一区二区| 国产午夜亚洲精品不卡| 91麻豆精品秘密| 日本麻豆一区二区三区视频| 中日韩av电影| 欧美精品久久久久久久多人混战| 麻豆成人免费电影| 亚洲人亚洲人成电影网站色| 欧美一级淫片007| 91麻豆国产福利精品| 久久成人免费日本黄色| 亚洲一区在线播放| 欧美国产视频在线| 91精品国产综合久久精品图片 | 色综合一个色综合| 日本麻豆一区二区三区视频| 成人免费一区二区三区视频| 日韩欧美国产午夜精品| 欧美四级电影网| 国产精品一区三区| 日本中文在线一区| 亚洲色图欧洲色图婷婷| 精品国产百合女同互慰| 欧美高清性hdvideosex| 91福利国产成人精品照片| 国产一区二区免费在线| 五月综合激情日本mⅴ| 亚洲人成小说网站色在线| 精品捆绑美女sm三区| 制服.丝袜.亚洲.中文.综合| 不卡av在线网| 国产美女一区二区三区| 免费成人av在线播放| 午夜精品久久久久久| 亚洲在线视频一区| 亚洲美女屁股眼交| 亚洲色图视频免费播放| 国产精品久久久久婷婷| 久久精品亚洲一区二区三区浴池| 日韩精品专区在线| 日韩美女视频在线| 欧美精品一区视频| 日韩欧美一区在线观看| 日韩限制级电影在线观看| 欧美日韩美少妇| 欧美精品丝袜中出| 欧美男生操女生| 欧美一区二区三区视频在线观看| 欧美性色黄大片| 欧美亚洲国产bt| 欧美福利视频一区| 精品欧美乱码久久久久久| 精品奇米国产一区二区三区| 精品久久国产老人久久综合| 精品少妇一区二区三区| 国产亚洲一二三区| 国产精品第13页| 亚洲第四色夜色| 视频一区视频二区中文字幕| 久久国产尿小便嘘嘘尿| 国产精品1区二区.| 99精品视频一区| 欧美色视频在线| 精品久久国产字幕高潮| 国产欧美日韩中文久久| 一区二区三区精品| 视频一区欧美精品| 精品一区二区三区香蕉蜜桃 | 欧美午夜电影网| 日韩三级.com| 中文天堂在线一区| 亚洲免费观看高清| 麻豆免费精品视频| 成人国产在线观看| 欧美日韩精品是欧美日韩精品| 26uuu国产在线精品一区二区| 中文字幕久久午夜不卡| 亚洲电影一级黄| 国产一区不卡视频| 91黄色在线观看| 精品少妇一区二区三区日产乱码| 国产精品网站在线| 日韩—二三区免费观看av| 成人在线一区二区三区| 欧美日韩综合一区| 亚洲丝袜自拍清纯另类| 黄色资源网久久资源365| 欧美色爱综合网| 成人欧美一区二区三区视频网页|