qq_慕勒8366649
2021-06-16 11:03
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>使用thead、tbody、tfoot标签</title>
</head>
<body>
<table border="1">
<caption>成绩表 </caption>
<!-- 标题列表 -->
<thead>
<!-- 内容列表-->
<tr>
<th>科目</th>
<th>分数</th>
</tr>
<tbody>
<!-- 内容列表-->
<tr>
<td>语文</td>
<td>99</td>
</tr>
</tbody>
<tbody>
<!-- 内容列表-->
<tr>
<td>数学</td>
<td>60</td>
</tr>
</tbody>
<tfoot>
<!-- 内容列表-->
<tr>
<td>总分</td>
<td>159</td>
</tr>
</tfoot>
</body>
</html>
因为你的标签没有正确的关闭,你的</thead>没有写哦!!!!
初识HTML(5)+CSS(3)-升级版
1225297 学习 · 18230 问题
相似问题