0

私のコンテンツページはこんな感じです。ブートストラップ 3.0.2 を使用しています。テーブルをページの水平方向の中央に表示したい (250 px の左余白のように)。ブートストラップまたはその他のレイアウトでこれに役立つクラスはありますか? 私のテーブルは非常に小さく、3 列と 5 行です。

<div class="container">
    <table class="table-condensed ">
    </table>
</div>
4

1 に答える 1

1
<div class="container">
    <table class="table-condensed center-block" style="width:100px;">
    ...
    </table>
</div>
于 2013-11-08T11:31:55.410 に答える