JSFiddle - React, Tailwind, and code Playground
by Neeraj Yadav
HTML
<a href="javascript:void(0)">Try this</a>
<div tabindex="1">1</div>
<input type="text" value="Hey there" />
CSS
div,
a,
input {
text-decoration: none;
color: blue;
}
div:hover,
a:hover,
input:hover {
cursor: pointer;
}
div:focus,
a:focus,
input:focus {
color: orange;
}