我有一张桌子,我想要宽度为span5,并使其中心水平。
如何用Twitter Bootstrap 2来做到这一点?
解决方法
创建新风格 –
.center-table { margin: 0 auto !important; float: none !important; }
并将其应用于表 –
<table class="span5 center-table"> <tr> <td>This is a centered table</td> </tr> </table>