Blink Hover Divs - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Hover Link

Description

Blink Hover Divs

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">
#div1 {<!--   www .j av  a 2  s.  c  o m-->
   width:301px;
   height:276px;
   background-color:Chartreuse;
}

.container {
   width:301px;
}

.container:hover #div2 {
   display:block;
}

#div2 {
   background-color:yellow;
   width:301px;
   height:276px;
   margin-top:-276px;
   opacity:.10;
   display:none;
}
</style> 
 </head> 
 <body> 
  <div class="container"> 
   <div id="div1"></div> 
   <div id="div2">
     Lorem ipsu 
   </div> 
  </div>  
 </body>
</html>

Related Tutorials