JSFiddle - React, Tailwind, and code Playground

HTML

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

CSS

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