9 lines
184 B
SCSS
9 lines
184 B
SCSS
/* H5的时候,隐藏滚动条 */
|
||
::-webkit-scrollbar {
|
||
display: none;
|
||
width: 0 !important;
|
||
height: 0 !important;
|
||
-webkit-appearance: none;
|
||
background: transparent;
|
||
}
|