Skip to main content Skip to docs navigation
View on GitHub

Floating labels(フローティングラベル)

入力フィールドの上に浮かんでいる美しいシンプルなフォームラベルを作成します。

Example

<input class="form-control"><label> 要素のペアを .form-floating でラップして、Bootstrap のテキストフォームフィールドでフローティングラベルを有効にします。CSS だけのフローティング・ラベルのメソッドは、 :placeholder-shown 疑似要素を利用しているので、それぞれの <input> にプレースホルダーが必要です。また、兄弟セレクタ(例: ~)を利用できるように、 <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>

Textareas

デフォルトでは、.form-control を持つ <textarea><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 属性を使用しないでください。その代わりに、明示的な高さを設定します (インラインまたはカスタム 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>

Selects

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

Layout

グリッドシステムで作業する場合、フォーム要素をカラムクラス内に配置することを確認してください。

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