JSFiddle - React, Tailwind, and code Playground
HTML
<div id='pargo'></div>
CSS
#pargo{
width:100px;
height:100px;
background:rgb(80%,10%,30%);
color:white;
padding:10px;
font-size:32px;
}
JavaScript
document.getElementById("pargo").onmouseover = function(){
this.innerHTML = 'Test';
}
document.getElementById("pargo").onmouseout = function(){
this.innerHTML = '';
}