JSFiddle - React, Tailwind, and code Playground

HTML

<div class="txt" contenteditable="true">Lorem ipsum</div>

SCSS

.txt {
    padding: 10px;
    
    &:read-write:focus {
        background: #eeeeee;
        outline: none;
    }
}