表格的定义
<table>
标签定义 HTML 表格。简单的 HTML 表格由 table 元素以及一个或多个 <tr>
、<th>
或 <td>
元素组成表格结构;其中: <tr>
元素定义表格行,<th>
元素定义表头,<td>
元素定义表格单元。
cation定义表格标题
1.1table表格
border-collapse:collapse;合并单元格
odd奇数列
even偶数列
1.2 合并列单元格(rowspan)
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>小李子</title>
</head>
<body><h4>合并列单元格:</h4>
<table border="1">
<tr>
<th>姓名</th>
<td>Bill Gates</td>
</tr>
<tr>
<th rowspan="3">邮箱</th>
<td>123456@qq.com</td>
</tr>
<tr>
<td>123456@163.com</td>
</tr>
<tr>
<td>123456@lizi.com</td>
</tr>
</table></body>
</html>1.3背景色&图片(bgcolor & background)
- 添加背景色使用:bgcolor
- 添加背景图片使用:background