首页 > 网站 > WEB开发 > 正文

隐藏overflow-x的滚动条

2024-04-27 15:04:40
字体:
来源:转载
供稿:网友
.wrap { width: 100%; overflow: hidden; //关键 } .scroll { width: 100%; padding-bottom: 100px; //height + padding-bottom 必须大于.wrap height overflow-x: auto; } .content { width: 500%; background: linear-gradient(90deg,blue 50px,yellow 50px,yellow 100px); }<div class="wrap"> <div class="scroll"> <div class="content"></div> </div> </div>

主要用在移动端,在pc端同overflow: hidden没区别,因为滚动条已被隐藏想移动也移动不了


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表