In older versions (<43) of Chrome, use the @-webkit-keyframes prefix instead of the standard @keyframes . Thus, full support would look like this:
@-webkit-keyframes test { from { color: red; } to { color: green; } } @keyframes test { from { color: red; } to { color: green; } }
Update
I have done several tests with various different methods, and it only works if the link has not been visited (why, I don't know).
Example
source share