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