代码如下:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>表格标签的其它标签</title>
</head>
<body>
<table bgcolor="black" cellspacing="2px"width="600px"align="center">
<caption><h2>545宿舍名单</h2></caption>
<tr bgcolor="#a9a9a9">
<th>姓名</th>
<th>性别</th>
<th>性取向</th>
<th>民族</th>
</tr>
<tr bgcolor="white"align="center">
<td>范国栋</td>
<td>男</td>
<td>正常</td>
<td>汉</td>
</tr>
<tr bgcolor="white"align="center">
<!--此处省略-->
</tr>
</table>
</body>
</html>
引入新的标签:<caption></caption>表格标题标签,标签中还可嵌套其它标签,如<h2>标签
<th></th>表格行标题标签,自动加粗且居中