<div class="father"> <div class="childern"></div> </div> <style> .father{display:flex;overflow:auto;} .childern{width:200px;flex-shrink:0} </style>
这样写滚动的时候会有滚动条出现,若想去除默认滚动条,可以加上下面这么一句
.father::-webkit-scrollbar{
display: none;
}
<div class="father"> <div class="childern"></div> </div> <style> .father{display:flex;overflow:auto;} .childern{width:200px;flex-shrink:0} </style>
这样写滚动的时候会有滚动条出现,若想去除默认滚动条,可以加上下面这么一句
.father::-webkit-scrollbar{
display: none;
}
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。