JSFiddle - React, Tailwind, and code Playground

HTML

<div class="red" contenteditable="true"> hello </div>

CSS

.red{  
    color:red;
}
.red:focus{  
    outline:red;
    border:2px solid red;
}