<div class="red yellow" style="height:200px; width: 200px;"><div>
.yellow { background: yellow; } .red { background: red; }
這個區域渲染出來是什麼顏色呢?紅色? 黃色?css
答案是紅色html
不知道有多少人和我有同樣的誤區,一直覺得是由class中的排版順序決定同優先級樣式應用順序的。。。ide
其實是誰在css文件中,權重相等,聲明在後面,那麼最終就應用誰code
W3C 上面的說明
https://www.w3.org/TR/CSS2/cascade.html#cascading-orderhtm
Finally, sort by order specified: if two declarations have the same weight, origin and specificity, the latter specified wins. Declarations in imported style sheets are considered to be before any declarations in the style sheet itself.ci
大體意思就是,若是兩個選擇器的聲明權重相等,那麼誰在後面,最後就應用誰。get