Java程序员用学前端么?java开发所需的前端技术全教程(HTML/CSS/j
P36学生表HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>学生表</title>
</head>
<body>
<div>
<div class="title">学生列表</div>
<div class="thead">
<div class="row bold">
<div class="col">编号</div>
<div class="col">姓名</div>
<div class="col">性别</div>
<div class="col">年龄</div>
</div>
</div>
<div class="tbody">
<div class="row">
</div>
</div>
</div>
<style>
html,body{
font-family: 华文行楷;
font-size: 20px;
}
.title{
margin-bottom: 10px;
font-size: 30px;
color: #333;
text-align: center;
}
.row{
background-color: #fff;
display: flex;
justify-content: center;
}
.col{
border: 1px solid #f0f0f0;
width: 15%;
height: 35px;
text-align: center;
line-height: 35px;
}
</style>
</body>
</html>

