为什么wrapper
div没有高度?如果我设置高度(height:200px
),会出现绿色背景,但是如何使用自动高度进行设置?Div没有高度
这里是我的代码(JSFiddle):
HTML:
<div class="wrapper">
<div class="effect"></div>
<div class="content">
...content
</div>
</div>
CSS:
.content {
position: absolute;
background-color:red;
}
.wrapper, .effect {
background: green;
}
.wrapper {
position: relative;
width: 630px;
}
.effect {
width:100%;
position: absolute;
}
身高:自动; ..... –
http://jsfiddle.net/q3xT4/2/我尝试它,但它不适用于我 – szu
定位元素绝对将其从普通文档流中移除。所以'.content'和'.effect'都不会扩展'.wrapper'。 – showdev