I tried searching on Google for a solution, but I couldn't find anything! Is there a trick or library available to avoid repeating CSS extensions for browsers? Instead of using -webkit-
, -moz-
, and -o-
prefixes?
-webkit-animation: NAME-YOUR-ANIMATION 5s infinite;
-moz-animation: NAME-YOUR-ANIMATION 5s infinite;
-o-animation: NAME-YOUR-ANIMATION 5s infinite;
animation: NAME-YOUR-ANIMATION 5s infinite;
I remember seeing a solution from a girl online before, but I can't seem to find it now!