css如何实现手机端移动端左右滑动不显示滚动条?
网友回复
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum=1.0,minimum=1.0,user-scalable=0" />
</head>
<body>
<style>
.bigBox{white-space: nowrap; overflow-y: auto;width:100%;}
.bigBox::-webkit-scrollbar{display: none;}
.smallBox{display: inline-block;}
</style>
<div class="bigBox">
<di...点击查看剩余70%


