Blogger Information
Blog 10
fans 0
comment 0
visits 3330
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
表格课程表
手机用户7232767
Original
285 people have browsed it

<!DOCTYPE html>

<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=, initial-scale=1.0">
<title>表格</title>
</head>
<body>
<table border="1">
<!--标题-->
<caption>课程表</caption>
<!--表头-->
<thead>
<tr>
<th>周一</th>
<th>周二</th>
<th>周三</th>
<th>周四</th>
<th>周五</th>
<th>周六</th>
</tr>
</thead>

<!--表体浏览器自动生产(必选)-->

<tbody>
<!--td:单元格,数据存放的地方-->
<!--跨行合并:rowspan-->

<tr>
<td rowspan="3">语文</td>
<td>数学</td>
<td>英语</td>
<td>科学</td>
<td>音乐</td>
<td rowspan="6">美术</td>
</tr>
<tr>
<!--<td>语文</td>-->
<td>数学</td>
<td>英语</td>
<td>科学</td>
<td>音乐</td>

</tr>
<tr>
<!--<td>语文</td>-->
<td>数学</td>
<td>英语</td>
<td>科学</td>
<td>音乐</td>

<tr>
<td>语文</td>
<td>数学</td>
<td>英语</td>
<td>科学</td>
<td>音乐</td>

</tr>
<tr>
<td>语文</td>
<td>数学</td>
<td>英语</td>
<td>科学</td>
<td>音乐</td>

</tr>
</tbody>

<!--表尾-->

<tfoot>
<tr>
<!--水平和平,colspan-->
<th colspan="3">课后作业</th>
<th colspan="2">体育</th>
<th>书法</th>
</tr>
</tfoot>
</table>
<button>结算</button>
</body>
</html>

Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:表格效果实现的不错, 下次的作业可以将代码使用代码块, 这样会有高亮显示, 并且可以再添加一张运行效果的截图
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post