I am encountering the following issue: Within a table, there are multiple cells, some of which contain tooltips.
When the user hovers over a specific cell, the tooltip is supposed to appear. However, the challenge arises with a table that has a horizontal scrollbar at the bottom due to the content exceeding the screen width.
When the tooltip has a position: absolute without a relative parent, it displays above the scrollbar (which is readable) but does not move along with the scrollbar.
On the other hand, if the tooltip has a position: absolute with a relative parent, it moves with the scrollbar but may end up being hidden.
The desired outcome is for the tooltip to follow the scrolling action, display above the scrollbar when hovering over the "Hover me" text, even when the content is scrolled to the right.
Thank you for your assistance!