的CSS背景屬性的縮寫定義如下:瞭解CSS背景簡寫屬性
background: color position/size repeat origin clip attachment image|initial|inherit;
但後來我發現下面的例子:
body {
background: #00ff00 url('smiley.gif') no-repeat fixed center;
}
所以這裏的順序是:顏色-image-repeat-attachment-position
此訂單可以更改嗎?