我有一个带有以下css的div(标题),当我在iphone中打开我的网站并水平滚动除标题之外的所有滚动时,我需要将标题与其他内容一起滚动。
这只发生在iphone中,它在Windows和Android中运行良好。
...谢谢
.staticheader {
width: 100%;
height: 65px;
text-align: center;
position: fixed;
z-index: 9999;
float: left;
background-color: rgb(40, 40, 40);
top: 0px;
}
答案 0 :(得分:0)
你有没有理由使用float:left?
尝试
left: 0px;
而不是
float: left;