2014-10-06 73 views

回答

0

你可能想要刪除固定在你的頭和.menu類的位置。

.menu { 
    background: none repeat scroll 0 0 #e6e6e6; 
    margin-left: auto; 
    margin-right: auto; 
    //position: fixed; ////remove this//// 
    top: 85px; 
    z-index: 99; 
} 

Header { 
    border-bottom: 0 solid #eee; 
    overflow: auto; 
    //position: fixed; ////and remove this//// 
    width: 100%; 
} 

最終代碼:

.menu { 
    background: none repeat scroll 0 0 #e6e6e6; 
    margin-left: auto; 
    margin-right: auto; 
    top: 85px; 
    z-index: 99; 
} 

Header { 
    border-bottom: 0 solid #eee; 
    overflow: auto; 
    width: 100%; 
} 
+0

這是輝煌謝謝!儘管如此,我該如何定位股票多一點? – 2014-10-06 19:55:04

+0

例如,您可以嘗試給.menu一個50px的「margin-bottom」。 – 2014-10-06 19:56:12

+0

令人驚歎!你的傳奇人物謝謝你! :) – 2014-10-06 19:58:35