JSFiddle - React, Tailwind, and code Playground

by Curry

HTML

<div>Will have text cursor</div>
<div>Will not have text cursor</div>

CSS

div {
    cursor:text;
    background:#faa;
    border:1px solid black;
    padding:2em;
    margin:1em;
}
div:nth-child(2) {
    pointer-events:none;
}