将
header
/ footer
固定住。
header
main
footer
.header{
position: fixed;
top:0;
width: 100%;
height: 30px;
background-color: red;
}
.footer{
position: fixed;
bottom: 0;
width: 100%;
height: 30px;
background-color: red;
}
.main{
margin-top: 35px;
min-height: 1000px;
background-color: yellow;
}