好的,我基本上是在构建一个流畅的布局。我的 HTML 是这样的:
<div id="container">
<div class="box" id="left">Left</div>
<div class="box" id="center">This text is long and can get longer</div>
<div class="box" id="right">Right</div>
<div class="clear"></div>
</div>
这是CSS:
#container{
width: 100%;
}
.box{
float: left;
}
#left, #right{
width: 100px;
}
#center{
width: auto; /* ? */
overflow: hidden;
}
.clear{
clear:both;
}
我需要知道的是如何在#center
重新调整大小时#container
重新调整大小而不使元素在彼此下方移动。