-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflex-QQmail.html
44 lines (44 loc) · 915 Bytes
/
flex-QQmail.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body, html{
margin: 0;
height: 100%;
}
div{
display: flex;
flex-flow: column;
height: 100%;
}
header{
height: 100px;
background-color: red;
}
main{
flex-grow: 1;
display: flex;
}
aside{
width: 150px;
background-color: lightgreen;
}
section{
flex-grow: 1;
background-color: lightblue;
}
</style>
</head>
<body>
<div>
<header>header</header>
<main>
<aside>aside</aside>
<aside>section</aside>
</main>
</div>
</body>
</html>