/* Remove the outline from any focused editable element */ [contenteditable="true"]:focus { outline: none; }
Or, if you are using a custom class on your editor:
.my-editor-class[contenteditable="true"]:focus { outline: none; }