Hover to Change All Of Class - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Hover to change

Description

Hover to Change All Of Class

Demo Code

ResultView the demo in separate window

<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>

Related Tutorials