用另一个类来否定一个类的css属性

时间:2013-09-05 20:06:32

标签: html css

我有这个:

<div class="style1 neg">
    <input type="submit" value="blah" />
</div>

和css:

.style1 {
    float: left;
    margin-top: 25px;
}
.style1 .neg {
    margin-top: 0;
}

我试图否定margin-top,但是当我在浏览器中检查元素时,'neg'样式似乎完全被忽略了。我该怎么做呢?

1 个答案:

答案 0 :(得分:15)

空格后代选择器.style1 .neg选择.neg作为.style的后代。您想使用.style1.neg

文档:http://www.w3.org/TR/css3-selectors/#class-html

行动中:http://jsfiddle.net/dH7JJ/