Course Content
Bootstrap 5 Alerts
0/1
Progress Bars
0/1
Spinners
0/1
Pagination
0/1
List Groups
0/1
Bootstrap 5 Scrollspy
0/1
Bootstrap
About Lesson

BS5 Floating Labels

A floating label moves inside the input field when typing, providing a clean and modern look.

  • .form-floating → Enables floating labels.
  • The label moves inside the input field when text is entered.

Example:

HTML
<div class="form-floating w-50">
      <input type="text" class="form-control" id="floatingInput" placeholder="Name">
      <label for="floatingInput">Name</label>
    </div>
    <br>
    <div class="form-floating w-50">
      <input type="email" class="form-control" id="floatingInput" placeholder="Email">
      <label for="floatingInput">Email</label>
    </div> 

Output: