When it comes to the css background property, the shorthand definition is typically given as:
background: color position/size repeat origin clip attachment image|initial|inherit;
However, I have stumbled upon some examples that show a different order:
body {
background: #00ff00 url('smiley.gif') no-repeat fixed center;
}
In this case, the order is: color-image-repeat-attachment-position
I wonder if there is any specific reason for this change in order?