Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/danielkucal/angular-contenteditable-placeholder

Adds support for placeholder on elements with contentEditable="true"
https://github.com/danielkucal/angular-contenteditable-placeholder

Last synced: about 1 month ago
JSON representation

Adds support for placeholder on elements with contentEditable="true"

Awesome Lists containing this project

README

        

# angular-contentEditable-placeholder
### `placeholder` support for `contentEditable="true"`

Aborted, simply place in your CSS:
```css
[contenteditable=true]:empty:before {
content: attr(placeholder);
display: block;
}
```