我有以下html5代碼。我預計文字商業廣告的樣式爲斜體,顏色爲黃色。但它是紅色的。拋開元素的風格
只能將某些樣式應用於預留元素嗎?
CSS:
aside h4 {
font-style: italic !important;
color: yellow;
}
article h4 {
font-style: normal;
color: red;
}
HTML:
<div>
<article>
<aside>
<h4>Business Ads</h4>
</aside>
</article>
</div>
這是一個特殊性問題:應用第一條規則*,但第二條規則(它覆蓋第一條規則中的任何非重要樣式)也是如此。 – Jeroen 2014-10-03 11:41:21
嗨,你有沒有找到解決你的問題?請接受你最喜歡的答案。 – 2014-10-08 10:55:50