Hey there! I'm facing a little dilemma. I've got this div container that's 300px wide, positioned relative, and has an overflow hidden property. Inside it, there are two child divs with absolute position. I'm using CSS3 to translate them with -transform: translate3d(0, 0, 0) initially, then on click transforming them to translate3d(-400px, 0, 0) and vice versa. It all works perfectly fine on Windows, but here's the catch - when I try to scroll using two fingers on a Mac or MacBook system, the div container overflows and reveals the translated div (sometimes showing white empty spaces). Any ideas how to fix this issue?