我有这个:
<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'样式似乎完全被忽略了。我该怎么做呢?
答案 0 :(得分:15)
空格是后代选择器。
.style1 .neg
选择.neg
作为.style
的后代。您想使用.style1.neg