Created
October 25, 2012 15:46
-
-
Save cliftoncanady/3953530 to your computer and use it in GitHub Desktop.
CSS: CSS3 Transforms
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/******* | |
CSS3 Transforms | |
*************************************/ | |
-webkit-transform: perspective(250) rotateX(45deg); | |
-moz-transform: perspective(250) rotateX(45deg); | |
-ms-transform: perspective(250) rotateX(45deg); | |
-o-transform: perspective(250) rotateX(45deg); | |
transform: perspective(250) rotateX(45deg); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment