Files
ClassContent/历届学生/front-end-team-10/项目练习/学生项目/韩孟雪/2023-2-17/text.html
2024-09-27 02:06:13 +08:00

33 lines
686 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>
*{
padding: 0;
margin: 0;
}
body{
display: flex;
height: 100vh;
flex-direction: column;
}
.box1{
flex: 1;
background: red;
}
.box2{
height: 50px;
background: blue;
}
</style>
</head>
<body>
<div class="box1">123</div>
<div class="box2">456</div>
</body>
</html>