I was wondering if anyone can help me to make this popup behave under IE the same as in FF.
The application is in an intranet, so I can't give you a direct link, but as shown in the picture below, when I pass the mouse over the link, in FF I see the right scroll bar (get longer/window is resized) but in IE nothing happen even if the popup overflow the height of the the page.
Snapshot FF 3.6.16:

Snapshot IE 8.0

The CSS:
a.info {
font-weight:normal; position:relative; text-decoration:none;
}
a:hover.info {
background:none; text-decoration:none; z-index:10;
}
a.info span {
display:none;
}
a:hover.info span {
background:#FADD7F; border:1px solid #00629F; color:#666666;
display:inline; font-size:80%; font-weight:normal; left:20px;
line-height:12px; padding:2px 4px; position:absolute; text-align:left;
top:20px; width:150px; z-index:99;
}
a.info_large {
position:relative; text-decoration:none;
}
a:hover.info_large {
background:none; text-decoration:none; z-index:10;
}
a.info_large span {
display:none;
}
a:hover.info_large span {
background:#FADD7F; border:1px solid #00629F; color:#666666;
display:inline; font-size:80%; font-weight:normal; left:20px;
line-height:12px; padding:2px 4px; position:absolute; text-align:left;
top:20px; z-index:99;
}
The HTML:
<td nowrap="nowrap" class="tailleListe">
<a class="info_large" href="../odm/odm_management.php?odm_id=2035893">2035893
<img border="0" src="../images/infos.gif">
<span>
23/03/2011 (Stéphane Schneider) : qsd<br>
qsd<br>qsd<br>qs<br>d<br>qsd<br>qs<br>
d<br>qsd<br>qs<br>dqs<br>d<br>qsd<br>
qsd<br><br>qsd<br>qsd<br>qsd
</span>
</a>
</td>
You can download the complete page here [zip]
Any idea about how to figure out with this problem, how to fix the render of this page to become the same under IE/FF ?
Look at the circle and the distance between the scroll bar and the bottom of the page