web-dev-qa-db-ja.com

テキスト要素以外のCSSがラップされましたか?

コンテンツが単なるテキストではない場合、divのコンテンツのラッピングを回避する方法はありますか。いくつかのボタン?

22
cur4so

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>

デモ

30
sachleen