引导程序页面上的中心表

时间:2015-12-14 15:50:32

标签: html css twitter-bootstrap

我正在尝试使用bootstrap中心表。

这是html:

<div class="container-fluid">
    <table id="total votes" class="table table-hover text-centered">
        <thead>
            <tr>
                <th>Total votes</th>
                <th> = </th>
                <th>Voter A</th>
                <th> + </th>
                <th>Voter B</th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <td>{{ total_votes }}</td>
                <td> = </td>
                <td>{{ total_voter_a }}</td>
                <td> + </td>
                <td>{{ total_voter_b }}</td>
            </tr>
        </tbody>    
    </table>
</div>

但是,无论我如何调整css,表格仍然左对齐。我确定我错过了一些简单的事情。我还认为container-fluid会使表格跨越整个页面。

这是css:

.table th {
    text-align: center;
}

.table {
    border-radius: 5px;
    width: 50%;
    float: none;
}

2 个答案:

答案 0 :(得分:25)

您错过了margin:auto

.table {
    border-radius: 5px;
    width: 50%;
    margin: 0px auto;
    float: none;
}

Example

答案 1 :(得分:5)

将CSS更改为:

table{
   margin: 0 auto
}