有没有办法避免包裹div
当内容不仅仅是文本时的内容,例如几个按钮?
答案 0 :(得分:28)
white-space:nowrap;
应该可以解决问题。
#foo {
white-space:nowrap;
width: 100px;
}

<div id="foo">
<input type="button" value="hello"/>
<input type="button" value="hello"/>
<input type="button" value="hello"/>
<input type="button" value="hello"/>
<input type="button" value="hello"/>
<input type="button" value="hello"/>
<input type="button" value="hello"/>
</div>
&#13;
答案 1 :(得分:0)
您可以在CSS中设置这两个属性:
white-space:nowrap;
和max-width:something;
答案 2 :(得分:-1)
您可以使用
为其他内容声明静态位置position:absolute;