JSFiddle - React, Tailwind, and code Playground

HTML

<div class="style1 green">AAA</div>
<div class="style1 blue">BBB</div>

CSS

.green {
    background-color: green;
}
.blue {
    background-color: blue;
}
.style1:hover {
    background-color: red;
}

.style1:hover {
    /* How to disable highlighting from here?*/
    
}