Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save thurt/9a3757226e0e0604e44d1fdc60d9093f to your computer and use it in GitHub Desktop.
Save thurt/9a3757226e0e0604e44d1fdc60d9093f to your computer and use it in GitHub Desktop.
CSS - Placeholder support for contentEditable elements
/ *
* Exemple:
* <div contenteditable="true" placeholder="Enter text here..."></div>
*
*/
[contenteditable=true]:empty:before {
content: attr(placeholder);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment