如何改变DIV中的css而不是其他任何地方?

时间:2012-06-11 01:01:33

标签: css

我有这段代码:

h1, h2, h3, h4{ 
    color: red;
}
.message_rouge h1, h2, h3, h4,{color: black;}

为什么我的所有标题都是黑色而不仅仅是“message_rouge”中的标题,其余的是红色?

谢谢:)

2 个答案:

答案 0 :(得分:8)

每一行都是它自己的选择器,但你只是在第一行指定.message_rouge

请改用:

.message_rouge h1, 
.mesage_rouge h2,
.mesage_rouge h3,
.mesage_rouge h4 {
    color: black;
}

答案 1 :(得分:3)

这是错误的

.message_rouge h1, h2, h3, h4,{color: black;}

这是对的

.message_rouge h1,.message_rouge h2,.message_rouge h3,.message_rouge h4,{color: black;}