隐藏滚动条 wll_24 2020-01-15 406 阅读1分钟 / 使用伪类选择器 ::-webkit-scrollbar ,兼容chrome和safari浏览器 / .inContainer::-webkit-scrollbar{ display: none; } /兼容火狐/ .inContainer { scrollbar-width: none; } / 兼容IE10+ / .inContainer { -ms-overflow-style: none; }