HTML CSS examples for CSS Widget:Hover Link
Link:hover transform to work
<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>