我正在尝试使用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;
}
答案 0 :(得分:25)
答案 1 :(得分:5)
将CSS更改为:
table{
margin: 0 auto
}