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:
Use this to hide the scrollbar but keep functionality:
.example::-webkit-scrollbar { display: none; }
Hide scrollbar for IE, Edge and Firefox
.example { -ms-overflow-style: none; /* IE and Edge */ scrollbar-width: none; /* Firefox */ }