JSFiddle - React, Tailwind, and code Playground
HTML
<div class="edit" contenteditable="true">My text here</div>
<button>CLECK ME i'm button</button>
<div class="my_button">CLICK ME i'm div</div>
<input>
CSS
.my_button{
border:solid 1px black;
margin:10px 0 10px 0px;width:130px;
cursor:pointer;
padding:3px;
}
.edit{
outline:dashed 1px red;
}
button{
margin:10px 0;
}