SOURCE

console 命令行工具 X clear

                    
>
console
<!DOCTYPE html>
<html>

<head>
	<meta charset="utf-8">
	<title>表格</title>

</head>

<body>
	<div>
		<h1  align="center">学生信息表</h1>
		<table align="center" border="1" width="80%" height="100px" bordercolor="#F5F6F7" class="tab" >
           
			<thead>
				<tr class="word">
					<th align="center" bgcolor="lightgreen" style=color:red>姓名</th>
					<th align="center" bgcolor="lightgreen">性别</th>
					<th align="center" bgcolor="lightgreen">学号</th>
				</tr>
			</thead>
			<tbody>
				<tr>
					<td align="center" bgcolor="azure"  style=color:red>张三</td>
					<td align="center" bgcolor="azure"></td>
					<td align="center" bgcolor="azure">10086</td>
				</tr>
				<tr>
					<td align="center"  style=color:red>李四</td>
					<td align="center"></td>
					<td align="center">10087</td>
				</tr>
				<tr>
					<td align="center" bgcolor="azure"  style=color:red>王五</td>
					<td align="center" bgcolor="azure"></td>
					<td align="center" bgcolor="azure">10088</td>
				</tr>
                <tfoot>
                    <td></td>
                </tfoot>
			</tbody>
		</table>

</body>

</html>
	.tab {
			background-color: antiquewhite;
		}

		.word {
			color: aliceblue;
		}

		p {
			color: red;
		}
        *{
padding:0;         /*清除内边距*/
margin:0;          /*清除外边距*/
}