Bold on hover - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Hover

Description

Bold on hover

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">
li {<!-- ww w . ja va 2  s . co  m-->
   display:inline-block;
   margin-right:16px;
   float:left;
   list-style:none;
}

.navigation {
   font-size:17px;
   color:Chartreuse;
   transition:text-shadow 2s;
   text-decoration:none;
   text-transform:uppercase;
   font-family:"Verdana";
}

a:hover {
   text-shadow:2px 0px yellow;
}
</style> 
 </head> 
 <body> 
  <ul> 
   <li> <a href="" class="navigation">Lore</a> </li> 
   <li> <a href="" class="navigation">Lorem ipsu</a> </li> 
   <li> <a href="" class="navigation">Lorem i</a> </li> 
   <li> <a href="" class="navigation">Lorem i</a> </li> 
   <li> <a href="" class="navigation">Lorem i</a> </li> 
  </ul>  
 </body>
</html>

Related Tutorials