Hide scrolling bar

Hi guys! does anyone knows how i can hide the scroll bar? i tried this code but it didn’t worked :frowning:
.html::-webkit-scrollbar {
width: 0px;
}
.html {
scrollbar-width: none;
-ms-overflow-style: none;
}

Thank you!

Captura de pantalla 2023-09-11 a la(s) 20.56.46|87x499

1 Like

bro whats your code you wanna recycle but how to it ?
two none none and which one .gtml?
not just on your style if you wanna chose the code for yourstyles
you must be have a look in Youtube or check the online some toriturieosies!

one more thing is that the pictures
how ti hide? switch it or scan it ?
the code just give you the positions is it ?
or you wanna it get it more actions ?

Hello! Here is a suggestion from another user:

You can reduce the scroll bar width to 0 in CSS

/* width */
::-webkit-scrollbar {
width: 0px;
}

3 Likes

Thanks! This worked for me!