Struggling to achieve my desired outcome, I'm beginning to question if it's even possible. I have three divs
with varying widths based on hover (with simple transitions). The height of these divs
always adjusts to 100% of the browser window height using jQuery.
To handle multiple sections of scrollable content, I've used overflow-y: scroll
. However, having three scrollbars seems cumbersome, so I'm attempting to remove them. It's straightforward in Chrome by using
::-webkit-scrollbar { display: none; }
, but other browsers pose a challenge. Suggestions from other sources recommend wrapping the content in a div with overflow: hidden
, but this approach disrupts the transitions entirely.
Check out this demo for clarification. Any insights are greatly appreciated!