CSS nowrap不是文本元素?

时间:2013-04-06 23:56:15

标签: html css html5 nowrap

有没有办法避免包裹div 当内容不仅仅是文本时的内容,例如几个按钮?

3 个答案:

答案 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;
&#13;
&#13;

Demo

答案 1 :(得分:0)

您可以在CSS中设置这两个属性:

white-space:nowrap;max-width:something;

答案 2 :(得分:-1)

您可以使用

为其他内容声明静态位置
position:absolute;