Files
ClassContent/历届学生/fontendseven/项目练习/上课项目/居中案例/index.html
2024-09-27 02:06:13 +08:00

28 lines
627 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.test {
width: 400px;
height: 100px;
background: red;
text-align: center;
line-height: 60px;
}
.demo {
width: 100px;
height: 50px;
background: blue;
}
</style>
</head>
<body>
<div class="test">
<div class="demo"></div>
</div>
</body>
</html>