Created
July 13, 2020 17:25
-
-
Save softiconic/ffd541ea8cd3c43a9f36b12a6cc7053d to your computer and use it in GitHub Desktop.
Placeholder text on click hide
This file contains hidden or 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
textarea::-webkit-input-placeholder, input::-webkit-input-placeholder { | |
color: #fff; | |
opacity: 1; | |
transition: opacity 0.5s; | |
-webkit-transition: opacity 0.5s; | |
} | |
textarea:focus::-webkit-input-placeholder, input:focus::-webkit-input-placeholder { | |
opacity: 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment