答案 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;
}