相信大家在做移动端项目时都会遇到fixed失效的问题,在这里我们说的是在ios 下 ,头部底部都采用固定定位时,滑动中心部分时整个页面都跟着滚动也就是说固定定位失效了。那么如何解决这个问题呢?这里有个小诀窍分享给大家。
<body>
<!-- fixed定位的头部 -->
<div class="header"></div>
<!-- 可以滚动的区域 -->
<div class="main">
<div class="content">
<!-- 内容区域 -->
</div>
</div>
<!-- fixed定位的底部 -->
<footer class="footer">
<input type="text" placeholder="请输入姓名">
</footer>
</body>
.header,.footer,.main{
display: block;
}
.header {
position: fixed;
top:0;
left: 0;
right:0;
height:100px;
}
.footer {
position: fixed;
bottom: 0;
left: 0;
right:0;
height: 30px;
}
.main{ /*main绝对定位,进行内部滚动*/
position: absolute;
top: 100px; /*top是头部的高度*/
bottom: 30px; /*bottom是底部的高度*/
overflow-y: scroll; /*使之可以滚动*/
webkit-overflow-scrolling:touch; /*增加弹性滚动,解决滚动不流畅的问题*/
}
/* .main .content内容部分,如果上述没达到预期效果,就需要添加此样式 */
.main .content{
height:2000px;
}