Skip to content

Instantly share code, notes, and snippets.

@wbbradley
Created June 13, 2013 05:29
Show Gist options
  • Save wbbradley/5771441 to your computer and use it in GitHub Desktop.
Save wbbradley/5771441 to your computer and use it in GitHub Desktop.
CSS3 is cool
[contenteditable] {
border: 2px solid rgba(0,0,0,0);
}
[contenteditable]:hover {
border: 2px dashed #eeeeee;
}
[contenteditable]:empty {
border: 2px dashed #ddeeee;
font-style: italic;
}
.my-div [contenteditable]:empty:before {
content: "Enter some info...";
}
.my-other-div [contenteditable]:empty:before {
content: "Enter some other info...";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment