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:
#subparent { overflow: hidden; width: 500px; border: 1px rgba(0, 0, 0, 1.00) solid; } #parent { width: 515px; height: 300px; overflow-y: auto; overflow-x: hidden; opacity: 10%; } #child { width: 511px; background-color: rgba(123, 8, 10, 0.42); }