Created
August 29, 2013 23:52
-
-
Save oswaldoacauan/6384794 to your computer and use it in GitHub Desktop.
CSS - Placeholder support for contentEditable elements
This file contains 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
/ * | |
* Exemple: | |
* <div contenteditable="true" placeholder="Enter text here..."></div> | |
* | |
*/ | |
[contenteditable=true]:empty:before { | |
content: attr(placeholder); | |
} |
I have added not(:focus), and now it`s working for IE also
&[contenteditable]:not(:focus):empty:before {
content: attr(placeholder);
display: block;
}
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I had some issues in Edge with this, when copying/pasting. It was pasting all of the paragraphs in reverse order and this was fixed by replacing
before
withafter
. No idea why that fixed it, but i'd love to know.