Last active
September 8, 2015 09:48
-
-
Save dhunmoon/3b1c5ccd28a3205ddc73 to your computer and use it in GitHub Desktop.
CSS: Transform Translate
This file contains 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
transform: translate(Xpx, Ypx); | |
-webkit-transform: translate(Xpx, Ypx); | |
-moz-transform: translate(Xpx, Ypx); | |
-o-transform: translate(Xpx, Ypx); | |
-ms-transform: translate(Xpx, Ypx); | |
/* | |
For IE8 or Less support: | |
http://www.useragentman.com/IETransformsTranslator/ | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment