bootstarp 3.0 特别好看的table样式,并且标题和内容都居中显示的代码
时间: 2024-01-21 20:17:44 浏览: 139
可以使用以下代码实现一个居中显示标题和内容的Bootstrap 3.0表格样式:
```
<table class="table table-bordered table-hover">
<thead>
<tr>
<th class="text-center">标题1</th>
<th class="text-center">标题2</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-center">内容1</td>
<td class="text-center">内容2</td>
</tr>
<tr>
<td class="text-center">内容3</td>
<td class="text-center">内容4</td>
</tr>
</tbody>
</table>
```
这里使用了Bootstrap 3.0的table类和相关的样式类,如text-center类来实现文字居中显示。您可以根据需要修改样式类来适应您的具体需求。
阅读全文