Bootstrap中的表格
带边框表格 table-bordered # 就是有分割线
条纹状表格 table-striped # 斑马样式
悬停变色 table-hover #
紧凑风格 table-condensed # 会矮一点
示例:
<table class="table table-striped table-bordered table-hover ">
<thead>
<tr>
<th>标题一</th>
<th>标题二</th>
<th>标题三</th>
<th>标题四</th>
<th>标题五</th>
</tr>
</thead>
<tbody>
<tr>
<td>内容一</td>
<td>内容二</td>
<td>内容三</td>
<td>内容四</td>
<td>内容五</td>
</tr>
<tr>
<td>内容一</td>
<td>内容二</td>
<td>内容三</td>
<td>内容四</td>
<td>内容五</td>
</tr>
</tbody>
</table>
图片.png
表格居中对齐:
http://blog.csdn.net/win_turn/article/details/74160696
网友评论