Skip to content

Instantly share code, notes, and snippets.

@djanix
Created July 11, 2013 15:27
Show Gist options
  • Save djanix/5976468 to your computer and use it in GitHub Desktop.
Save djanix/5976468 to your computer and use it in GitHub Desktop.
css fix when using css transition or filter (element is flashing)
.container {
transform: translateZ(0);
-ms-transform: translateZ(0);
-webkit-transform: translateZ(0);
backface-visibility: hidden;
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-ms-backface-visibility: hidden;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment