JSFiddle - React, Tailwind, and code Playground
by Sachin Patel
HTML
<div id="151515" tabindex="0" onblur="alert('This one has tabindex');">
This will receive focus
</div>
<div contentEditable onblur="alert('This one is editable');">
This is editable
</div>
CSS
div {
border: 1px solid blue;
padding: 10px;
margin:10px;
}