/* 隐藏所有滚动条(H5 端) */
APP.vue
::-webkit-scrollbar {
display: none; /* Chrome/Safari/Edge */
width: 0 !important;
height: 0 !important;
background: transparent;
}
/* 兼容 Firefox 和 IE */
html,
body {
scrollbar-width: none; /* Firefox */
-ms-overflow-style: none; /* IE 10+ */
overflow-x: hidden; /* 防止横向溢出 */
}
uniapp 隐藏所有滚动条(H5 端)
最新推荐文章于 2025-05-29 16:07:48 发布