Created
March 2, 2014 00:07
-
-
Save chrisl8888/9299678 to your computer and use it in GitHub Desktop.
Translatez - translate z hack forces the browser to create a new layer and send rendering to the GPU. Helpful for items that move or animate. Source: http://stackoverflow.com/questions/10814178/css-performance-relative-to-translatez0
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
-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