Hi I am new to html and css and I would like to display a text on the right side when I hover the mouse over another text which is on the left side. I have a list of texts displayed on the left side here is the cod for it
<ul>
<li id="what">What Is Eco Flash?</li>
<br>
<li id="water">We Coneserve Water!</li>
<br>
<li id="chemicals">Chemicals Reduction!</a>
</li>
<br>
<li id="waste">No Waste-Water Run Off</li>
</ul>
and this is my css code for the list to be displayed on the left side
width:25%;
text-align: left;
font-family: 'Copperplate Gothic Light';
font-size: 20px;
font-style: normal;
font-variant: small-caps;
font-weight: bold;
text-decoration: none;
margin:.2em;
display: list-item;
now that I want to add is a small explanation text for each item in the list to appear on the right side when I hover over them.
I am new to the html and css and I have tried spam but it appears right under the text. How can I get the explanation text to appear on the right?
Thanks!