JSFiddle - React, Tailwind, and code Playground

HTML

<div>
    <p contenteditable="true">The first paragraph</p>
    <p contenteditable="true">The second paragraph</p>
</div>

CSS

p[contenteditable="true"]:focus {
    border: 2px solid red;
}