JSFiddle - React, Tailwind, and code Playground
by 1eddy87
HTML
<div class="result">
<div class="item">
<div id="item1"> <i class="icon"></i> ##</div>
</div>
<div>
CSS
.result {
height: 72px;
width: 100%;
border: 1px solid #000;
}
.result_hover {
background-color: #000;
}
JavaScript
$(".result").hover(function () {
$(this).toggleClass("result_hover");
});