为什么有些css属性没有生效?

时间:2016-01-22 17:27:46

标签: html css

为什么以下风格无法生效?

!important

我可以通过将input-group-btn附加到该属性来强制该属性。

代码:http://codepen.io/haxan7/pen/QyQNBR

2 个答案:

答案 0 :(得分:4)

以下两个声明都适用于锚文本。

.theme .content a{
  color: green;
}

.tags a{
  color: red;
}

颜色"绿色"比色更具特异性"红色"这就是为什么"绿色"正在申请。增加颜色的特异性"红色"那么它将被应用。

.theme .content .tags a {
 color: red;
}

答案 1 :(得分:1)

因为您的.theme .content a样式正在将标记颜色设置为绿色。

在您的代码中更改此内容:

.theme .content a{
  color: red;
}