我已经在页面顶部有固定菜单的网页上工作,在Android的移动版中,菜单工作正常,固定在页面顶部,但在iPhone上它似乎没有用,有人知道为什么?这是我的菜单div和容器:
.container{padding-top: 160px;z-index: 0;}
.menu{
margin: 0 auto;
width: 95%;
margin-left: 2.5%;
box-sizing: border-box;
overflow: auto;
position: fixed;
padding-bottom: 2%;
z-index:1;
}
答案 0 :(得分:0)
删除溢出:滚动,溢出:自动;和-webkit-overflow-scrolling:touch;来自您的css文件中的.menu
。我已经在Mac上使用Safari对此进行了测试,因为问题也出现在那里,直到我删除了这些属性。