Skip to content

Instantly share code, notes, and snippets.

@amk221
amk221 / placeholder.css
Last active October 23, 2024 10:20
Prosemirror placeholder plugin approach
.ProseMirror[data-placeholder]::before {
color: global.$placeholder-colour;
position: absolute;
content: attr(data-placeholder);
pointer-events: none;
}