Skip to content

Instantly share code, notes, and snippets.

@Coopeh
Created August 23, 2012 13:01
Show Gist options
  • Save Coopeh/3436372 to your computer and use it in GitHub Desktop.
Save Coopeh/3436372 to your computer and use it in GitHub Desktop.
Webkit CSS3 Rotation Transform Fix
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