Problem Statement
Which wrapper enables floating labels around inputs?
Explanation
Wrap an input and its label inside a .form-floating container. Always include a placeholder on the input so the label can float smoothly above the field when focused or filled.
Code Solution
SolutionRead Only
<div class='form-floating'> <input type='email' class='form-control' id='mail' placeholder='name@example.com'> <label for='mail'>Email address</label> </div>
