Menu toggle effect and submenus hover area - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Menu Hover

Description

Menu toggle effect and submenus hover area

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">
#one {<!--from ww  w  . jav a2 s.  com-->
   position:absolute;
   z-index:2;
   background-color:Chartreuse;
   height:51px;
   width:100px;
}

#two {
   position:static;
   -moz-transform:rotate(-31deg);
   -webkit-transform:rotate(-31deg);
   background-color:yellow;
   height:41px;
   width:100px;
}
</style> 
 </head> 
 <body> 
  <div id="one"></div> 
  <div id="two"></div>  
 </body>
</html>

Related Tutorials