-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.html
54 lines (53 loc) · 886 Bytes
/
demo.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
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
body,html{
width:100%;
height:100%;
}
*{
margin:0;padding:0;
}
.container{
width:100%;
min-height: 100%;
}
.content{
font-size: 50px;
padding-bottom:80px;
}
.bottom-fix{
bottom:0;
width:100%;
height:80px;
line-height: 80px;
background: #ccc;
text-align: center;
font-size: 50px;
position: relative;
margin:-80px auto 0 auto;
clear:both;
}
.container{
display: flex;
}
.left{
flex:0 0 200px;
background: #ccc;
}
.right{
flex: 1;
background: #00a0dc;
}
</style>
</head>
<body>
<div class="container">
<div class="left"></div>
<div class="right"></div>
</div>
</body>
</html>