Link:hover transform to work - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Hover Link

Description

Link:hover transform to work

Demo Code

ResultView the demo in separate window


<html>
 <head> 
  <style>
a {<!--from w  ww .j ava  2  s .co m-->
   display:block;
}

a:hover {
   font-size:46px;
   -webkit-transform:rotate(6deg);
   -webkit-transition-duration:2s;
}
</style> 
 </head> 
 <body> 
  <a href="http://davidwalsh.name/css-transformations" target="_blank">Lore</a>  
 </body>
</html>

Related Tutorials