🌐 VI | EN

Pure CSS Float Label

Nghia Phan
Nghia Phan
Technical Guide Views

Code collected from the Internet and saved here so I do not have to search for it again later 😊

Quảng cáo

DEMO:

<fieldset>  <legend>Sign up</legend>  <div class="input-group">    <div class="has-float-label">      <input id="first" type="text" placeholder="Name"/>      <label for="first">First</label>    </div>    <div class="has-float-label">      <input id="last" type="text" placeholder="Surname"/>      <label for="last">Last</label>    </div>  </div>  <label class="has-float-label">    <input type="email" placeholder="[email protected]"/>    <span>Email</span>  </label>  <label class="has-float-label">    <input type="password" placeholder="••••••••"/>    <span>Password</span>  </label>  <button>Sign up</button></fieldset>

Source: github://tonystar/float-label-css

Comments & Discussion

Share your thoughts, ask questions and feedback

Markdown & QQ Emoji
Loading comments...