The following code behaves differently between IE and FF.
You can see effect in IE is what I want. Some additional notes:
1. The code for relative and absolute positioning is for me to position a pop-up css box, which will cover text on the page ("aaaa" and "bbbb").
2. If I use a two-column table rather than two floating css boxes, the code works the same in IE and FF.
Could someone explain to me why the difference?
Thanks in advance.
Seaport
Code:
<div>
<div style="width: 85px; float: left">
<div style="position: relative">
<div style="position: absolute">
aaaa
</div>
</div>
</div>
<div style="width: 300px; float: left">
<div style="position: relative">
<div style="position: absolute">
bbbb
</div>
</div>
</div>
</div>
1. The code for relative and absolute positioning is for me to position a pop-up css box, which will cover text on the page ("aaaa" and "bbbb").
2. If I use a two-column table rather than two floating css boxes, the code works the same in IE and FF.
Could someone explain to me why the difference?
Thanks in advance.
Seaport