HTML CSS examples for CSS Widget:Hover to change
Hover to Change All Of Class
<html> <head> <title>Lorem ips</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> .row span:hover { background-color:Chartreuse; } </style> <!--from w ww . ja v a2 s. co m--> </head> <body> <span class="row"> <div class="boxy txtleft"> <span title="Agent">Lore</span> </div> <div class="boxy"> <span title="Status">Lo</span> </div> <div class="boxy txtright"> <span title="Last Call">Lor</span> </div> </span> <span class="row"> <div class="boxy txtleft"> <span title="Agent">Lore</span> </div> <div class="boxy"> <span title="Status">Lore</span> </div> <div class="boxy txtright"> <span title="Last Call">Lore</span> </div> </span> <span class="row"> <div class="boxy txtleft"> <span title="Agent">Lore</span> </div> <div class="boxy"> <span title="Status">Lore</span> </div> <div class="boxy txtright"> <span title="Last Call">Lore</span> </div> </span> </body> </html>