I completely understand that you cannot group animation keyframes selectors such as
@keyframes,
@-moz-keyframes,
@-webkit-keyframes { /*do something*/ }
and that you absolutely MUST do
@keyframes { /*do something*/ }
@-moz-keyframes { /*do something*/ }
@-webkit-keyframes { /*do something*/ }
I know there are pre-processors that can do all this for me. But I am more interested in the reason behind why this is the case?
My google-fu is failing me. It seems to always direct me to a stackoverflow page telling someone they 'cannot' do it and they must separate them all out, or telling people about the pre-processors -or- I get sent to that horrible about.com and read stuff like
- Any Selector Can be Grouped ~about.com
Which obviously is not true in this case. If someone can direct me to an article, or explain to me why it cannot be grouped it would be most helpful.