Skip to content

Instantly share code, notes, and snippets.

@aaronblohowiak
aaronblohowiak / dabblet.css
Created February 23, 2014 04:14 — forked from LeaVerou/dabblet.css
Unprefixed animations do nothing in Blink
/**
* Unprefixed animations do nothing in Blink
*/
@keyframes foo {
to { background: lime; }
}
div { background: red; animation: foo 1s infinite; }