摘要:<!DOCTYPE html><html><head> <meta charset="utf-8"> <title>table表格标签</title> <link rel="shortcot icon" type="image/x-icon" href=&quo
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>table表格标签</title>
<link rel="shortcot icon" type="image/x-icon" href="">
<link rel="stylesheet" type="text/css" href="">
<style type="text/css">
*{margin: 0px;padding: 0px}
table{height: 300px; border: 1px solid #ccc;border-collapse: collapse;}
tr td{height: 200px ;border: 1px solid #ccc;width: 100px;}
</style>
</head>
<body>
<table>
<tr>
<th>1</th>
<th>2</th>
<th>3</th>
<th>4</th>
<th>5</th>
</tr>
<tr>
<td colspan="5">合并列</td>
</tr>
<tr>
<td rowspan="2">合并行</td>
<td>2</td>
<td>3</td>
<td>4</td>
<td>5</td>
</tr>
<tr>
<td>2</td>
<td>3</td>
<td>4</td>
<td>5</td>
</tr>
</table>
</body>
</html>
批改老师:天蓬老师批改时间:2018-10-29 12:49:32
老师总结:以后标签名,请全部使用小写