I want to be able to scroll through the whole page, but without the scrollbar being shown.
In Google Chrome it\'s:
::-webkit-scrollbar { display:
This works for me with simple CSS properties:
.container { -ms-overflow-style: none; /* Internet Explorer 10+ */ scrollbar-width: none; /* Firefox */ } .container::-webkit-scrollbar { display: none; /* Safari and Chrome */ }
For older versions of Firefox, use: overflow: -moz-scrollbars-none;
overflow: -moz-scrollbars-none;