I'm trying to add two different styles for horizontal an vertical scrollbars.
I want both horizontal and vertical scrolls in my document but with different thicknesses. I want to hide the vertical scrollbar but keep it scrollable.
How do I achieve that?
<div class="scroll-container" style="width: 200px; height: 200px; overflow: scroll;">
<div style="width:300px; height:300px;">
<h1>Hello World</h1>
</div>
</div>