Skip to content

Instantly share code, notes, and snippets.

@amk221
amk221 / placeholder.css
Last active February 14, 2025 06:34
Prosemirror placeholder plugin approach
.ProseMirror[data-placeholder]::before {
color: global.$placeholder-colour;
position: absolute;
content: attr(data-placeholder);
pointer-events: none;
}