in English
浮動標籤
創建浮動在輸入字段上的精美簡單的表單標籤。
在本頁面
例子
包裹一對<input class="form-control">
and<label>
元素.form-floating
以啟用帶有 Bootstrap 文本表單字段的浮動標籤。placeholder
每個都需要 A,因為<input>
我們的純 CSS 浮動標籤方法使用:placeholder-shown
偽元素。另請注意,<input>
必須先出現,以便我們可以使用兄弟選擇器(例如,~
)。
<div class="form-floating mb-3">
<input type="email" class="form-control" id="floatingInput" placeholder="[email protected]">
<label for="floatingInput">Email address</label>
</div>
<div class="form-floating">
<input type="password" class="form-control" id="floatingPassword" placeholder="Password">
<label for="floatingPassword">Password</label>
</div>
當value
已經定義了 a 時,<label>
s 會自動調整到它們的浮動位置。
<form class="form-floating">
<input type="email" class="form-control" id="floatingInputValue" placeholder="[email protected]" value="[email protected]">
<label for="floatingInputValue">Input with value</label>
</form>
表單驗證樣式也可以按預期工作。
<form class="form-floating">
<input type="email" class="form-control is-invalid" id="floatingInputInvalid" placeholder="[email protected]" value="[email protected]">
<label for="floatingInputInvalid">Invalid input</label>
</form>
文本區域
默認情況下,<textarea>
s with.form-control
將與 s 具有相同的高度<input>
。
<div class="form-floating">
<textarea class="form-control" placeholder="Leave a comment here" id="floatingTextarea"></textarea>
<label for="floatingTextarea">Comments</label>
</div>
要在您的 上設置自定義高度<textarea>
,請不要使用該rows
屬性。相反,設置一個顯式height
(內聯或通過自定義 CSS)。
<div class="form-floating">
<textarea class="form-control" placeholder="Leave a comment here" id="floatingTextarea2" style="height: 100px"></textarea>
<label for="floatingTextarea2">Comments</label>
</div>
選擇
除了 之外.form-control
,浮動標籤僅在.form-select
s 上可用。它們以相同的方式工作,但與<input>
s 不同的是,它們總是<label>
以浮動狀態顯示 。選擇size
和multiple
不支持。
<div class="form-floating">
<select class="form-select" id="floatingSelect" aria-label="Floating label select example">
<option selected>Open this select menu</option>
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>
</select>
<label for="floatingSelect">Works with selects</label>
</div>
佈局
使用 Bootstrap 網格系統時,請確保將表單元素放置在列類中。
<div class="row g-2">
<div class="col-md">
<div class="form-floating">
<input type="email" class="form-control" id="floatingInputGrid" placeholder="[email protected]" value="[email protected]">
<label for="floatingInputGrid">Email address</label>
</div>
</div>
<div class="col-md">
<div class="form-floating">
<select class="form-select" id="floatingSelectGrid" aria-label="Floating label select example">
<option selected>Open this select menu</option>
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>
</select>
<label for="floatingSelectGrid">Works with selects</label>
</div>
</div>
</div>
薩斯
變量
$form-floating-height: add(3.5rem, $input-height-border);
$form-floating-line-height: 1.25;
$form-floating-padding-x: $input-padding-x;
$form-floating-padding-y: 1rem;
$form-floating-input-padding-t: 1.625rem;
$form-floating-input-padding-b: .625rem;
$form-floating-label-opacity: .65;
$form-floating-label-transform: scale(.85) translateY(-.5rem) translateX(.15rem);
$form-floating-transition: opacity .1s ease-in-out, transform .1s ease-in-out;