Files
ClassContent/历届学生/fontendsix/每日课程/2021-10-26/demo.html
2024-09-27 02:06:13 +08:00

61 lines
1.1 KiB
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>
body,
li,
ul {
margin: 0;
list-style: none;
padding: 0;
}
.header {
background: red;
height: 45px;
position: fixed;
width: 100%;
top: 0;
}
.footer {
background: blue;
height: 50px;
position: fixed;
width: 100%;
bottom: 0;
}
.content {
height: calc(100vh - 45px - 50px);
margin-top: 45px;
display: flex;
}
.test {
flex: 1;
}
.main {
flex: 5;
}
</style>
</head>
<body>
<div class="header"></div>
<div class="content">
<div class="test">dsdw</div>
<div class="main">
<h2>ddd</h2>
</div>
</div>
<div class="footer"></div>
</body>
</html>