移动端浏览器body的overflow:hidden没有什么作用




    
    
    
    
    
    书城首页
    


    
<% include include/header.html %>
<% include include/index-top.html %> <% include include/index-hot.html %> <% include include/index-recommend.html %> <% include include/index-female.html %> <% include include/index-male.html %> <% include include/index-free.html %> <% include include/index-bottom.html %>

三种解决方案

1、body加position:fixed;width:100%;height:100%。

2、给要滚动的元素添加一个父级,设定高度,overflow:auto;

3、html,body{height:100%;overflow:hidden}

建议使用第三种,可以把overflow:hidden作为一个单独的隐藏类,更方便控制。

你可能感兴趣的:(移动端浏览器body的overflow:hidden没有什么作用)