010_header.html

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>span</title>
</head>
<body>
<table border="1">
<tr>
<td>row 1, number1</td>
<td>row 1, number2</td>
<td>row 1, number3</td>
</tr>
<tr>
<td>row 2, number1</td>
<td>row 2, number2</td>
<td>row 2, number3</td>
</tr>
</table>

<br>

<table border="1">
<tr>
<td>model</td>
<td>port</td>
<td>operation</td>
</tr>
<tr>
<td>liujun</td>
<td>8000</td>
<td>delete</td>
</tr>
<tr>
<td>mingming</td>
<td>9000</td>
<td>
<a href="http://baidu.com">detail</a>
</td>
</tr>
<tr>
<td>liujun</td>
<td>8000</td>
<td>delete</td>
</tr>
</table>


<table border="1">
<thead>
<tr>
<th>header1</th>
<th>header2</th>
<th>header3</th>
<th>header4</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>1</td>
<td>1</td>
<td>1</td>
</tr>
<tr>
<td colspan="2">2</td>
<td>2</td>
<td>2</td>
</tr>
<tr>
<td rowspan="2">3</td>
<td>3</td>
<td>3</td>
<td>3</td>
</tr>
<tr>
<td>4</td>
<td>4</td>
<td>4</td>
</tr>
</tbody>
</table>

</body>
</html>

posted on 2018-09-16 22:52  langjitianyadaolao  阅读(103)  评论(0编辑  收藏  举报

导航