Thursday, February 21, 2013

Transform Rotate

element
{
width:200px;
height:100px;
background-color:yellow;


/* Rotate div */


transform:rotate(7deg);
-ms-transform:rotate(7deg);    /* Internet Explorer */
-moz-transform:rotate(7deg); /* Firefox */
-webkit-transform:rotate(7deg); /* Safari and Chrome */
-o-transform:rotate(7deg);   /* Opera */
 

}

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.