JSFiddle - React, Tailwind, and code Playground

HTML

<div class="element"> Content of the DIV</div>

CSS

.element{
    width:100px;
    height:50px;
    background-color:rgba(50,50,50,1);
}
.element:hover{
    background-color:rgba(50,50,50,0.5);
}