Skip to content

Instantly share code, notes, and snippets.

@bultas
Created February 5, 2015 10:04
Show Gist options
  • Save bultas/8394d160439348a0e6ac to your computer and use it in GitHub Desktop.
Save bultas/8394d160439348a0e6ac to your computer and use it in GitHub Desktop.
ContentEditable placeholder
// 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