Last active
January 12, 2019 14:49
-
-
Save Andrey-web/bd512abf3a271060a04731f7dd241593 to your computer and use it in GitHub Desktop.
Custom placeholder
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
| .cont { | |
| position:relative; | |
| } | |
| .placeholder { | |
| position:absolute; | |
| left:5px; | |
| top:50%; | |
| transform:translateY(-50%); | |
| pointer-events:none; | |
| } | |
| .red { | |
| color:red; | |
| } | |
| .form-control:focus ~ .placeholder, | |
| .form-control:valid ~ .placeholder { | |
| display:none; | |
| } |
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
| <form> | |
| <div class="cont"> | |
| <input type="text" class="form-control" required> | |
| <div class="placeholder">Name <span class="red">*</span></div> | |
| </div> | |
| </form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment