Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Center table with Twitter Bootstrap 2

I have a table that I would like the width to be span5 and make it center horizontally.

How can I do this with Twitter Bootstrap 2?

like image 515
ahmy Avatar asked Mar 07 '12 05:03

ahmy


1 Answers

Create a new style -

.center-table
{
  margin: 0 auto !important;
  float: none !important;
}

and apply it to the table -

<table class="span5 center-table">
  <tr>
    <td>This is a centered table</td>
  </tr>
</table>
like image 154
Simon Cunningham Avatar answered Nov 06 '22 09:11

Simon Cunningham