浮动标签
创建漂浮在您的输入字段上方的精美简单的表单标签。
在本页面
示例
在.form-floating
中包装一对<input class="form-control">
和 <label>
元素,以使用Bootstrap的文本表单字段启用浮动标签。由于我们CSS-only浮动标签的方法使用:placeholder-shown
伪元素,因此在每个<input>
上都需要一个placeholder
。还要注意,<input>
必须放在第一位,这样我们就可以使用同级选择器(例如,~
)。
<div class="form-floating mb-3">
<input type="email" class="form-control" id="floatingInput" placeholder="name@example.com">
<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
, 则<label>
将自动调整到浮动位置。
<form class="form-floating">
<input type="email" class="form-control" id="floatingInputValue" placeholder="name@example.com" value="test@example.com">
<label for="floatingInputValue">Input with value</label>
</form>
表单验证样式也按预期工作。
<form class="form-floating">
<input type="email" class="form-control is-invalid" id="floatingInputInvalid" placeholder="name@example.com" value="test@example.com">
<label for="floatingInputInvalid">Invalid input</label>
</form>
Textarea
默认情况下,<textarea>
的.form-control
的高度与<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>
Select
除.form-control
外,浮动标签仅在.form-select
上可用。它们的工作方式相同,但与<input>
不同,它们总是以浮动状态显示<label>
。
<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="name@example.com" value="mdo@example.com">
<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>