Shanadas
Shanadas

Reputation: 535

Center align content using bootstrap

My content page is something like this. I am using bootstrap 3.0.2. I want my table to be shown in the horizontal middle of the page (like some left margin of 250 px). Any class for this in bootstrap or any other layout helps? My table is very small of 3 columns and 5 rows.

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

Upvotes: 0

Views: 166

Answers (1)

Maksym Melnyk
Maksym Melnyk

Reputation: 96

<div class="container">
    <table class="table-condensed center-block" style="width:100px;">
    ...
    </table>
</div>

Upvotes: 1

Related Questions