x
 
1
<!DOCTYPE html>
2
<title>Example</title>
3
<style>
4
    p {
5
        font-size: 2em;
6
    }
7
    p[contenteditable="true"][spellcheck="true"] {
8
        color: limegreen;
9
    }
10
    p[contenteditable="true"][spellcheck="false"] {
11
        color: tomato;
12
    }
13
</style>
14
15
<p contenteditable="true" spellcheck="true">Editable with spellcheck
16
<p contenteditable="true" spellcheck="false">Editable without spellcheck