html,body{
overflow: hidden;
height: 100%;
}移动端禁止上下滚动css设置方式记录
最新推荐文章于 2025-04-16 10:30:32 发布
博客介绍了在移动端使用CSS禁止页面滚动的方法,通过设置html和body的样式,将overflow属性设为hidden,height属性设为100%来实现。
博客介绍了在移动端使用CSS禁止页面滚动的方法,通过设置html和body的样式,将overflow属性设为hidden,height属性设为100%来实现。
html,body{
overflow: hidden;
height: 100%;
}
4736