Text Reveal on Hover
"Play is the highest form of research."
Quote by Albert Einstein
Add a Code Block on your page
<div class="myDIV"> <h3> "Play is the highest form of research." </h3> </div> <div class="hide"> Quote by Albert Einstein </div>
Add to Custom CSS
/* Text Reveal on Hover */ .hide { display: none; } .myDIV:hover + .hide { display: block; }