Created
August 27, 2013 15:38
-
-
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.
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
| .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