Rotating 'anchor' elements with transforms - HTML CSS CSS Animation

HTML CSS examples for CSS Animation:Rotate

Description

Rotating 'anchor' elements with transforms

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">
div<!--from   w  ww  . ja v a  2 s  .c  om-->
 {
   transform:rotate(8deg);
   -ms-transform:rotate(8deg);
   -moz-transform:rotate(8deg);
   -webkit-transform:rotate(8deg);
   -o-transform:rotate(8deg);
   margin:51px;
}
</style> 
 </head> 
 <body> 
  <div> 
   <a id="a" href="#">Lorem ipsum</a> 
  </div>  
 </body>
</html>

Related Tutorials