我有以下标记:
<div class="one">Content</div>
<div class="two"></div>
和以下样式表:
.one, .two {
height: 20px;
}
.one {
background-color: #f00;
}
.two {
background-color: #0f0;
margin-top: -10px;
}
为什么文本Content
可见,但红色背景不可见?由于给定的样式表,我希望文本也只能部分可见。
为了您的方便,我还创建了一个jsFiddle。