If the order of values for the CSS animation shorthand property are as such : animation: [name] [duration] [timing-function] [delay] [iteration-count] [direction] [fill-mode] [play-state]; , how does the below CSS make sense?
animation: coffee-labels-active 0.5s 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) both;
It appears that [delay] is coming before [timing-function] and that the fill mode is both.
Are we able to play around with the order of these values?