我的網站不在滾動的Android手機(Chrome瀏覽器)它正在UC瀏覽器,Safari。完美的筆記本電腦工作。網頁未滾動android手機(HTML/CSS/JS)
幫助我解決這個問題
我經歷了許多的答案了,但我不能找到任何出路。
有一個在我的style.css一些問題
我的style.css
我的網站不在滾動的Android手機(Chrome瀏覽器)它正在UC瀏覽器,Safari。完美的筆記本電腦工作。網頁未滾動android手機(HTML/CSS/JS)
幫助我解決這個問題
我經歷了許多的答案了,但我不能找到任何出路。
有一個在我的style.css一些問題
我的style.css
你需要媒體查詢添加到身體
body {
background: #0f0f0f;
overflow-y: hidden;
-webkit-transition: all .3s;
-moz-transition: all .3s;
-ms-transition: all .3s;
-o-transition: all .3s;
}
溢出-Y:隱藏;防止你的Android瀏覽器scroling 所以,你需要或者刪除此hiddend或添加meddia查詢
@media screen and (max-width: 480px) {
body {
overflow-y: scroll;
}
}
試着在你的身體使用一個類似下面,HTML。
body
{
background: #0f0f0f;
min-height:100%; height:100%;
overflow:scroll;
display:block;
-webkit-transition: all .3s;
-moz-transition: all .3s;
-ms-transition: all .3s;
-o-transition: all .3s;
}
這是否工作?讓我們知道如果你有別的東西沒有工作 –
Thinks alooot its working,I have done Overflow:scroll; –
請將此答案標記爲正確。謝謝 –