HTML CSS examples for CSS Animation:Rotate
Rotating 'anchor' elements with transforms
<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>