Skip to content

Instantly share code, notes, and snippets.

@stefl
Created January 15, 2013 17:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stefl/4540506 to your computer and use it in GitHub Desktop.
Save stefl/4540506 to your computer and use it in GitHub Desktop.
Contenteditable hover and focus states
[contenteditable]:hover:after {
content: ' click to edit';
font-style: italic;
font-size: 12px;
color: #ccc;
}
[contenteditable]:hover, [contenteditable]:focus {
background: #FFFFD3;
}
[contenteditable]:focus {
padding: 5px;
}
[contenteditable]:focus:after {
content: '';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment