Skip to content

Instantly share code, notes, and snippets.

@adriancbo
Created September 15, 2014 03:51
Show Gist options
  • Save adriancbo/4c9f1b21ffc7bb2e43f6 to your computer and use it in GitHub Desktop.
Save adriancbo/4c9f1b21ffc7bb2e43f6 to your computer and use it in GitHub Desktop.
Hardware Accelerate SCSS Mixin
@mixin hw-accelerate {
-webkit-transform: translate3d(0, 0, 0);
-webkit-backface-visibility: hidden;
-webkit-perspective: 1000;
transform: translate3d(0, 0, 0);
backface-visibility: hidden;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment