Skip to content

Instantly share code, notes, and snippets.

@snap44
Created July 30, 2018 20:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save snap44/4ba15da405a9b033260f9d6ff7bef2bf to your computer and use it in GitHub Desktop.
Save snap44/4ba15da405a9b033260f9d6ff7bef2bf to your computer and use it in GitHub Desktop.
floatingPlaceholder
<style>
.wrapper { position: relative; }
.control:focus ~ .floating-label,
.control:not(:focus):valid ~ .floating-label{
top: 6px;
left: 5px;
font-size: 11px;
opacity: 0.6;
}
.control {
font-size: 14px;
width: 200px;
height: 45px;
}
.floating-label {
position: absolute;
pointer-events: none;
left: 20px;
top: 14px;
transition: 0.3s ease all;
}
</style>
<div class="wrapper">
<input type="text" class="control" required/>
<span class="floating-label">First Name</span>
</div>
<div class="wrapper">
<input type="text" class="control" required/>
<span class="floating-label">Last Name</span>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment