表格基础知识
(1)列表的相关属性
1.列表符号
list-style-type:样式;
2.列表符号的位置
list-style-position:位置;
表格
table 表格
caption 表格标题
thead 表头
tbody 表体
tfoot 表尾
tr 行
th 表头单元格
td 数据单元格
例子:
<table>
<caption>标题</caption>
<thead>
<tr>
<th>表头1</th>
<th>表头2</th>
</tr>
</thead>
<tbody>
<tr>
<td>内容1</td>
<td>内容2</td>
</tr>
</tbody>
</table>
合并单元格
colspan 跨列(左右合并) rowspan 跨行(上下合并)
table {
border-collapse: collapse;
}
文字居中
td, th {
text-align: center;
}
单元格间距
td, th {
padding: 8px;
}
