【发布时间】:2010-06-09 21:45:31
【问题描述】:
我希望东、西 div 向下延伸以匹配中心 div 的高度...可以吗?
非常感谢。
.con{
padding-left: 22px;
padding-right: 22px;
overflow: hidden;
}
.col{
position: relative;
float: left;
}
.west{
width: 7px;
right: 22px;
margin-left: -100%;
background: url(http://www.example.com/west.png) repeat-y;
padding: 0 0 0 15;
}
.east{
width: 7px;
margin-right: -22px;
background: url(http://www.example.com/east.png) repeat-y;
padding: 0 15 0 0;
}
.center{
width: 100%;
}
<div class="con">
<div class="center col">
Test Text<br/>
Test Text<br/>
Test Text<br/>
Test Text<br/>
</div>
<div class="west col">
</div>
<div class="east col">
</div>
</div>
【问题讨论】:
-
这看起来是 stackoverflow.com/questions/1780325/… 的副本