Skip to content

Instantly share code, notes, and snippets.

@mattnish
Last active August 29, 2015 14:16
Show Gist options
  • Save mattnish/0d14893cfd4eb2ee967e to your computer and use it in GitHub Desktop.
Save mattnish/0d14893cfd4eb2ee967e to your computer and use it in GitHub Desktop.
Webkit Render Hack (LESS)
.class-fucking-up {
.animation(display-hack .1s 1s 1 forwards);
}
@keyframes display-hack {
from {
.transform(translateZ(0));
}
to {
.transform(translateZ(0));
}
}
@-webkit-keyframes display-hack {
from {
.transform(translateZ(0));
}
to {
.transform(translateZ(0));
}
}
@-moz-keyframes display-hack {
from {
.transform(translateZ(0));
}
to {
.transform(translateZ(0));
}
}
@-ms-keyframes display-hack {
from {
.transform(translateZ(0));
}
to {
.transform(translateZ(0));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment