終於學會怎麼寫後臺側列表(隱藏滾動條)css
首先一個標準後臺程序有三部分組成:html
如今要求以下:ide
實現和辦法:spa
簡單用代碼來寫就是:code
html,body{htm
height:100%;it
overflow-x:hidden; /*非必須*/io
}class
.topbar{後臺
position:fixed; /*必須*/
}
.sidebar{
position:fixed; /*必須*/
left:0;
bottom:0; /*必須*/
overflow-x:hidden;
overflow-y:scroll;
width:270px; /*要比右側的margin-left長*/
}
.contents{
height:100%;
margin-left:250px; /*要比左側的寬度短*/
position:relative; /*必須*/
}
高亮再演繹一下:
html,body{ height:100%; overflow-x:hidden; /*非必須*/ } .topbar{ position:fixed; /*必須*/ } .sidebar{ position:fixed; /*必須*/ left:0; bottom:0; /*必須*/ overflow-x:hidden; overflow-y:scroll; width:270px; /*要比右側的margin-left長*/ } .contents{ height:100%; margin-left:250px; /*要比左側的寬度短*/ position:relative; /*必須*/ }