Bootstrap 5 表单浮动标签

浮动标签/动画标签

默认情况下,使用标签时,标签通常显示在输入字段的顶部:

使用浮动标签,可以在 input 输入框内插入标签,在单击 input 输入框时使它们浮动到上方:

实例

<div class="form-floating mb-3 mt-3">
  <input type="text" class="form-control" id="email" placeholder="Enter email" name="email">
  <label for="email">Email</label>
</div>

<div class="form-floating mt-3 mb-3">
  <input type="text" class="form-control" id="pwd" placeholder="Enter password" name="pswd">
  <label for="pwd">Password</label>
</div>
亲自试一试 »

关于浮动标签的注意事项: <label> 元素必须位于 <input> 元素之后,每个<input> 元素都需要 placeholder 占位符属性(即使未显示)。


文本框

文本框 textarea 也可以有浮动效果:

实例

<div class="form-floating">
  <textarea class="form-control" id="comment" name="text" placeholder="Comment goes here"></textarea>
  <label for="comment">Comments</label>
</div>
亲自试一试 »


选择框

我们可以在选择菜单上使用浮动标签,它将始终显示在选择菜单的左上角,不会有点击浮动效果:

实例

<div class="form-floating">
  <select class="form-select" id="sel1" name="sellist">
    <option>1</option>
    <option>2</option>
    <option>3</option>
    <option>4</option>
  </select>
  <label for="sel1" class="form-label">选择列表(选择一项):</label>
</div>
亲自试一试 »