我在顶部有一条很长的线:
#top-line {
background: #00A1E0;
border-bottom: 1px solid #FFF;
height: 4px;
position: absolute;
top: 0;
left: 0;
width: 10000px;
}
所以我overflow-x: hidden
用来防止水平滚动:
html {
overflow-x: hidden;
height: 100%;
}
body {
background: #EDEDED;
font-size: 12px;
font-family: Arial, sans-serif;
color: #666;
height: 100%;
overflow-x: hidden;
}
它工作正常,但在手机中我仍然可以无限期地向右滚动。
有什么解决方法吗?