2017-02-22 80 views
0

我的移動網站上有一個谷歌瀏覽器地址欄出現問題。我在我的網站上有一個固定的導航欄,現在我向下滾動,地址欄消失,當我打開我的菜單時,底部出現一個空白區域(地址欄的大小),我需要向上滾動以使地址欄出現,從而消除空白。這是我的菜單CSS:Chrome地址欄在移動網站上留下空白

#menu { 
position: absolute; 
top: 0; 
bottom: 0; 
width: 100%; 
z-index: 10000; 
padding: 0; 
background-color: blue; 
overflow-x: hidden; 
overflow-y: auto; 
} 

其他Web瀏覽器正在研究移動很好,我能做些什麼來擺脫地址欄空白的?

回答