2015-12-14 128 views
1

如何在頁面滾動時使頁腳不會移動的粘性側欄。我試過這個CSS,但它使側邊欄不出現。帶固定頁腳的固定側欄

#sidebar-wrapper { 
    z-index: 1000; 
    position: fixed; 
    left: 250px; 
    width: 0; 
    height: 100%; 
    margin-left: -250px; 
    overflow-y: auto; 
    background-color: #F8F8F8; 
} 

但側邊欄根本沒有出現。我有一個工作演示的小提琴:https://jsfiddle.net/DTcHh/15259/

+2

您將它的寬度設置爲0 –

回答

0

你可以試試這個;

nav { 
    position: fixed; 
    left: 0; 
    top: 0; 
    bottom: 0; 
    background: whatver; 
    width:whateverpx; 
    padding: 10px; 
    } 

根據需要爲您的頁面重命名導航。