Created
February 5, 2015 10:04
-
-
Save bultas/8394d160439348a0e6ac to your computer and use it in GitHub Desktop.
ContentEditable 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
// http://stackoverflow.com/a/18368720 | |
// http://codepen.io/mrmoje/pen/lkLez | |
// HTML | |
<div contentEditable=true data-placeholder="My Placeholder String"></div> | |
// CSS | |
[contentEditable=true]{ | |
border:1px solid grey; | |
} | |
[contentEditable=true]:empty:not(:focus):before{ | |
content:attr(data-placeholder); | |
color:grey; | |
font-style:italic; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment