Skip to content

Instantly share code, notes, and snippets.

View marcoalexpinheiro's full-sized avatar

Marco Pinheiro marcoalexpinheiro

View GitHub Profile
@marcoalexpinheiro
marcoalexpinheiro / CSS Rendered at GPU
Created June 11, 2013 14:41
Force CSS to be rendered in GPU
/* we apply a 3d transform just to improve rendering */
-webkit-transform:translateZ(0.1px);
-moz-transform:translateZ(0.1px);
-o-transform:translateZ(0.1px);
-ms-transform:translateZ(0.1px);
transform:translateZ(0.1px);