JSFiddle - React, Tailwind, and code Playground

by sendil J

HTML

<div class="confirm_selection" style="overflow-x: hidden; overflow-y: hidden; opacity: 1; ">[ Confirm Selection ]</div>

CSS

.confirm_selection {
    -webkit-transition: text-shadow 0.2s linear;
    -moz-transition: text-shadow 0.2s linear;
    -ms-transition: text-shadow 0.2s linear;
    -o-transition: text-shadow 0.2s linear;
    transition: text-shadow 0.2s linear;
}
.confirm_selection:hover {
    text-shadow: 0 0 10px red;
}