Created
August 23, 2012 13:01
-
-
Save Coopeh/3436372 to your computer and use it in GitHub Desktop.
Webkit CSS3 Rotation Transform Fix
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
figure#user_logo div.logo:hover{ | |
-webkit-transform:rotate(30deg); | |
-moz-transform:rotate(30deg); | |
-o-transform:rotate(30deg); | |
/* Webkit Rotation Flicker Fix */ | |
-webkit-transform-style: preserve-3d; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment