Hover to show an item - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Hover to Show

Description

Hover to show an item

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">
.pinlabel {<!--from ww  w  . j  av  a  2 s .  com-->
   display:none;
   position:absolute;
   background-color:Chartreuse;
   height:17px;
   width:201px;
   color:yellow;
   top:0px;
   left:2px;
   font-size:11px !important;
   border-radius:11px;
   border:3px solid blue;
}

.maptimize_marker_0:hover span.pinlabel {
   display:block;
}
</style> 
 </head> 
 <body> 
  <div style="position: absolute; margin-left: -22px; margin-top: -22px; left: 502px; top: 379px; z-index: 380; display: block;" class="maptimize_marker_0 f st">
    Lor 
   <span class="pinlabel">Lorem i</span> 
  </div>  
 </body>
</html>

Related Tutorials