Reputation: 195
I have a requirement where i have multiple tables in a page and when i mouse over on one column it has to show tooltip at the top position with some data in it. Issue is tooltip is showing randomly. Tooltip data should appear immediate top of the tooltip icon. Thanks in advance.
Upvotes: 1
Views: 771
Reputation: 33218
I change the position on this class a.tooltip:hover span
from fixed
to absolute
and seems fix the problem at least in fiddle. And change the position to be top.
Top: http://jsfiddle.net/EK54x/2/
Beneath: http://jsfiddle.net/EK54x
Upvotes: 4