See the following post for a picture highlighting my question and a potential solution:
CSS overflow-y:visible, overflow-x:scroll
However, this strategy breaks when you actually move the scrollbar. In the suggested implementation (position: fixed;), the tooltips display next to child div in its position pre-scroll. So, as you scroll new child-divs into view, the tooltips begin falling off the bottom of the page.
See here for a demo of the bug: http://jsfiddle.net/narcV/4/
Any ideas how I can make the tooltips display next to the child div at all times?
position: fixedalways positions an element relative to the viewport, and not to its closestposition: relativecontainer. There's something odd about the question you link to as well: the title doesn't tally with the given code (it's alsooverflow-y: scroll; overflow-x: visible!), and I can't tell why the self-answer says to useposition: fixed.position: fixed;is broken, but rather the solution in the referenced post is buggy (because,position: fixed;behaves exactly as you describe)