JSFiddle - React, Tailwind, and code Playground

by Paul Leech

HTML

<div>
    <div>
        <h1>Something</h1>
    </div>
    <div>
        <h1 class='Handle'>Something</h1>
    </div>
</div>

CSS

h1 {
    cursor:move;
}
h1:not([class=Handle]) {
    cursor:pointer;
}