Reputation: 1725
I have problem with CSS position in IE7. here is the link http://jsfiddle.net/HXcM4/30/ input, and tooltip span is not moving with scroll bar in IE7.
Upvotes: 0
Views: 108
Reputation: 29575
Ok combined with oddy's fix for your javascript, to fix the bug in IE7 with the scrolling you just need to add position: relative
to the .mainDiv
rule.
Live example: http://jsfiddle.net/HXcM4/48/
Upvotes: 1