CSS 带有 Twitter Bootstrap 2 的中心表

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/9596475/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-30 03:11:48  来源:igfitidea点击:

Center table with Twitter Bootstrap 2

csstwitter-bootstrap

提问by ahmy

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

我有一张桌子,我希望宽度为span5并使其水平居中。

How can I do this with Twitter Bootstrap 2?

如何使用 Twitter Bootstrap 2 执行此操作?

回答by Simon Cunningham

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>