<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>表格
</title>
</head>
<body>
<table border="1" width="500" height="100">
<tr>
<th>姓名
</th>
<th>一月份工资
</th>
<th>二月份工资
</th>
</tr>
<tr>
<td>何朝雨
</td>
<td>1000000
</td>
<td>2000000
</td>
</tr>
</table>
<hr>
<table border="1" width="100%" height="100%">
<tr>
<th>姓名
</th>
<th>一月份工资
</th>
<th>二月份工资
</th>
</tr>
<tr>
<td>何朝雨
</td>
<td>1000000
</td>
<td>2000000
</td>
</tr>
</table>
<hr>
<table border="1" cellpadding="30" cellspacing="10">
<tr>
<th>姓名
</th>
<th>一月份工资
</th>
<th>二月份工资
</th>
</tr>
<tr>
<td>何朝雨
</td>
<td>1000000
</td>
<td>2000000
</td>
</tr>
</table>
<hr>
<table border="1" width="500" height="100">
<tr>
<th>姓名
</th>
<th colspan="2">我的工资
</th>
</tr>
<tr>
<td>何朝雨
</td>
<td>1000000
</td>
<td>2000000
</td>
</tr>
</table>
<hr>
<table border="1" width="200" height="100" >
<tr>
<th>姓名
</th>
<td>何朝雨
</td>
</tr>
<tr>
<th rowspan="2">一月份工资
</th>
<td>20000
</td>
</tr>
<tr>
<td>20000
</td>
</tr>
</table>
</body>
</html>
转载请注明原文地址: https://www.6miu.com/read-60183.html