79705233

Date: 2025-07-17 17:58:39
Score: 1
Natty:
Report link
/* 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;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Jaychavhan10