CSS

1.CSS解决高度自适应问题

1
2
3
4
<div id="main">
<div id="nav">nav</div>
<div id="content">content</div>
</div>

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
html, body, #app {
height: 100%;
margin: 0;
padding: 0;
}
#main {
position: relative;
height: 100%;
width: 120px;
background-color: #999;
}
#nav {
height: 50px;
background-color: #85d989;
}
#content {
position: absolute;
top: 50px;
bottom: 0;
width: 100%;
background-color: #cc85d9;
}