1. 程式人生 > >學習10 table表格制作標簽

學習10 table表格制作標簽

round utf-8 oct cnblogs meta ack logs 數據 con

<!doctype html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>認識table表格標簽</title>
<style type="text/css">
table tr td,th{border:1px solid #000;}
</style>
<!--用css為表格加上邊框-->
</head>
<body>
<table
> <tbody> <!--tbody代表行內內容下載完成可優先顯示--> <tr> <!--tr表示表格的行數--> <th>班級</th> <!--th表示表格的表頭--> <th>學生數</th> <th>平均成績</th> </tr> <tr> <td>一班</td> <!--td表示表格的單元格數據
--> <td>30</td> <td>89</td> </tr> <tr> <td>二班</td> <td>35</td> <td>85</td> </tr> <tr> <td>三班</td> <td>32</td> <td>80</td> </
tr> </tbody> </table> <!--table表示表格> </body> </html>

學習10 table表格制作標簽