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