Created
October 4, 2017 08:31
-
-
Save powerbuoy/dd88ff1d9f5c9182b51e3642d7f45166 to your computer and use it in GitHub Desktop.
Floating labels in pure CSS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$form-padding-vertical: .8rem; | |
$form-padding-horizontal: 1.2rem; | |
$transition-default: .25s; | |
$transition-easing: ease-in-out; | |
$color-form-placeholder: #999; | |
$color-text: #333; | |
.floating-label { | |
$translateY: $font-size-default * $line-height-default + $form-padding-vertical; | |
$paddingTop: $font-size-default * $line-height-default; | |
position: relative; | |
text-align: left; | |
padding-top: $paddingTop; | |
// A real placeholder is required for :placeholder-shown - hide it | |
::placeholder { | |
color: transparent; | |
} | |
// Position the label directly on top of the input | |
label { | |
display: block; | |
pointer-events: none; | |
padding-top: $form-padding-vertical; | |
padding-left: $form-padding-horizontal; | |
position: absolute; | |
left: 0; | |
top: $paddingTop; | |
right: 0; | |
bottom: 0; | |
color: $color-form-placeholder; | |
transform: translateY(0) scale(1); | |
transform-origin: left top; | |
transition: all $transition-default $transition-easing; | |
} | |
// When no placeholder is visible (ie there's text inside the field) - move up the label | |
input:not(:placeholder-shown) + label, | |
textarea:not(:placeholder-shown) + label { | |
transform: translateY(-$translateY) scale(1); | |
color: $color-text; | |
} | |
// Always position label above in IE Edge... | |
@supports (-ms-ime-align: auto) { | |
label { | |
transform: translateY(-$translateY) scale(1) !important; | |
} | |
} | |
// And 10/11 | |
@media all and (-ms-high-contrast: none) { | |
label { | |
transform: translateY(-$translateY) scale(1) !important; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment