如果我們布局的是后是fixed並且想要高度為100%的時候,我們一般會這樣設置:
div {
display:fixed;
height:100%;
overflow:scroll;
}
但是這樣並不會出現滾動條,正確的做法應該設置top和bottom為0:
.fixed-content {
top: 0;
bottom:0;
position:fixed;
overflow-y:scroll;
overflow-x:hidden;
}
