Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<!DOCTYPE html> <title>Example</title> <style> p { font-size: 2em; } p[contenteditable="true"][spellcheck="true"] { color: limegreen; } p[contenteditable="true"][spellcheck="false"] { color: tomato; } </style> <p contenteditable="true" spellcheck="true">Editable with spellcheck <p contenteditable="true" spellcheck="false">Editable without spellcheck