将两个或更多 css 规则应用于同一文本时,这些规则可能会发生冲突并产生意外的结果。浏览器按以下方式应用 css 规则:
class
属性应用的规则)中的属性将覆盖 html 标签样式中的属性。 在下面的示例中,为 h1
定义的样式可以指定所有 h1
段落的字体、大小和颜色,但应用于该段落的自定义 css 规则 .blue
将覆盖 h1
样式中的颜色设置。另一个自定义 css 规则 .red
将覆盖 .blue
,因为它位于 .blue
样式的内部。
<h1><span class="blue">this paragraph is controlled by the .blue custom style and h1html tag style.<span class="red">except this sentence is controlled by the .red style.</span>now we're back to the .blue style.</span></h1>
新闻热点
疑难解答