ブートストラップで構築されたサイトがあり、jquery.dragscroll プラグインを使用してスワイプ可能なヘッダーを持つテーブルを作成したいが、組み込みの流動グリッドは保持します。
テーブルのヘッダーを作成したいので、次の HTML を使用しています。
<div class="row-fluid">
<div class="span12">
<div style="overflow:hidden;width:90%;">
<div style="display:inline-block;width:100px">some content</div>
<div style="display:inline-block;width:100px">some content</div>
<div style="display:inline-block;width:100px">some content</div>
<div style="display:inline-block;width:100px">some content</div>
<div style="display:inline-block;width:100px">some content</div>
<div style="display:inline-block;width:100px">some content</div>
<div style="display:inline-block;width:100px">some content</div>
<div style="display:inline-block;width:100px">some content</div>
<div style="display:inline-block;width:100px">some content</div>
<div style="display:inline-block;width:100px">some content</div>
<div style="display:inline-block;width:100px">some content</div>
<div style="display:inline-block;width:100px">some content</div>
</div>
</div>
</div>
コードはこちら: http://jsfiddle.net/cVfzJ/1/
Fiddle でわかるように、すべての div が 2 行に表示されています。私の目的は、すべての div を 1 行に表示することです (オーバーフローした div を非表示にします)。
質問が明確であることを願っています