H5 移动端禁止上下滚动css设置

作者: web 发布时间: 2019-08-28 浏览: 3861 次 编辑


H5 移动端禁止上下滚动, 只需要css中同时设置 下面两个属性

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