make more divs appear when hovering over one div - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Hover

Description

make more divs appear when hovering over one div

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <style id="compiled-css" type="text/css">
.box {<!-- w w w  .j a  va  2  s. c o m-->
   border:0 solid Chartreuse;
   border-left-width:100px;
   height:100px;
   width:100px;
}

.box:hover {
   border-color:yellow;
   background:red;
   height:100px;
   width:100px;
}
</style> 
 </head> 
 <body> 
  <div class="box"></div>  
 </body>
</html>

Related Tutorials