Skip to content

Instantly share code, notes, and snippets.

@Plou
Created August 27, 2013 15:38
Show Gist options
  • Select an option

  • Save Plou/6355227 to your computer and use it in GitHub Desktop.

Select an option

Save Plou/6355227 to your computer and use it in GitHub Desktop.
Enable 3D rendering when available to improve transitions (work with javascript animations). Using it on text elements may cause bad font rendering.
.selector {
-webkit-transform: translateZ(0);
-moz-transform: translateZ(0);
-ms-transform: translateZ(0);
-o-transform: translateZ(0);
transform: translateZ(0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment