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:
The following was working for me on Microsoft, Chrome and Mozilla for a specific div element:
div.rightsidebar { overflow-y: auto; scrollbar-width: none; -ms-overflow-style: none; } div.rightsidebar::-webkit-scrollbar { width: 0 !important; }