61 lines
1.1 KiB
HTML
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> |