Need help, I try to make like a gallery with couples images.
I need to hide the scroll bar
I tried overflow: hidden doesn’t work
I even tried this code but still doesn’t work
@remonsam there’s also a less custom code solution that companies like Airbnb and Bustle use on their sites.
To hide a horizontal scroll bar, go the the element with overflow:scroll and add 20px of padding to the bottom, and then add -20px of margin on the bottom. This extends the height 20px and then hides it with the margin which hides the scroll bar.
This can also be applied to the vertical scroll bar by adding 20px padding to the right and -20px margin to the right.
Thank you so much @doseofdanno your solution very elegant and works fine
what makes your solution perfect is work fine with the other browsers like Firefox.