简书链接:uniapp必备css全局隐藏滚动条
文章字数:44,阅读全文大约需要1分钟

1
2
3
4
5
6
7
::-webkit-scrollbar {
display: none; /* 隐藏滚动条 */
width: 0 !important; /* 可选,滚动条宽度为0 */
height: 0 !important; /* 滚动条高度为0 */
-webkit-appearance: none; /* 移除默认滚动条样式 */
background: transparent; /* 背景透明 */
}

怎么全局?
main.js import "./main.css";