Skip to content

Instantly share code, notes, and snippets.

@LeaVerou
Created May 25, 2012 21:36
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LeaVerou/2790751 to your computer and use it in GitHub Desktop.
Save LeaVerou/2790751 to your computer and use it in GitHub Desktop.
Transforms & regular CSS properties
/**
* Transforms & regular CSS properties
*/
@keyframes subpixel-mess {
to {
top: 100px;
transform: translateY(0)
}
}
div {
position: relative; top: 0;
width: 100px; height: 100px;
background: yellowgreen;
transform: translateY(100px);
animation: subpixel-mess 1s infinite;
}
{"view":"split-vertical","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment