我想要一些 div 的相对定位,有一个外部容器并漂浮在一条线上。
实现这一目标的唯一方法是向左浮动我认为对吗?但是如果我这样做,如果元素大于容器宽度,它将换行...
这里的代码:(请不要介意语法错误)
<div style="position:relative;width:300px;height:300px;overflow:scroll">
<div id="1" style="position:relative;width:200px;height:50px;float:left;"></div>
<div id="2" style="position:relative;width:200px;height:50px;float:left;"></div>
</div>
id 为 2 的 Div 将换行...如何避免这种情况?