使用margin把底部设置一定的间距,IOS上 margin-bottom无效,安卓有效


两种解决办法:
方法一: 设置一个一定高度的div空白块;
方法二:给body加padding-bottom;
html{
height:100%;
overflow-y: hidden;
}
body{
height:100%;
overflow-y: auto;
padding-bottom: 60px;
}
网友评论