css – 带有Twitter Bootstrap的中心表2

前端之家收集整理的这篇文章主要介绍了css – 带有Twitter Bootstrap的中心表2前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一张桌子,我想要宽度为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>
原文链接:https://www.f2er.com/css/218423.html

猜你在找的CSS相关文章