HTML/Html-Notes/05-表格-基础.html
2023-05-01 19:37:40 +08:00

60 lines
1.0 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width-device-width,initial-scale=1.0">
<title>表格基础</title>
</head>
<body>
<!-- 表格
tr
td,th(加粗)
-->
<table border="1">
<tr>
<td>姓名</td>
<td>性别</td>
<td>年龄</td>
</tr>
<tr>
<td>司徒</td>
<td></td>
<td>20</td>
</tr>
<tr>
<td></td>
<td></td>
<td>20</td>
</tr>
</table >
<hr>
<table border="1">
<tr>
<td>姓名</td>
<td>性别</td>
<td>年龄</td>
</tr>
<tr>
<td>司徒</td>
<td></td>
<td>20</td>
</tr>
<tr>
<td></td>
<td></td>
<td>20</td>
</tr>
</table>
</body>
</html>