react-tooltip
react-tooltip copied to clipboard
The tooltip is hidden by the parent tag using overflow-auto
I want to tooltip the child tag, but the parent tag is using overflow-auto, causing the phenomenon below. What do I need to do to fix this problem? (This issue only appears on websites accessed by mobile)
Sorry for the late response. Missed the notification for this issue.
You have two options:
- Use the
posititionStrategyprop on the tooltip.
<Tooltip positionStrategy="fixed" />
- Move the tooltip component outside of your
overflowparent. This shouldn't affect the tooltip positioning.
Feel free to reopen with more information.