I have this seemingly easy issue in FF4.
In the code below I need P1_child to overflow (and placed above) P2_child.
However P1_child disappears behind P2 (not even to speak of P2_child as intended)
Am I missing something simple?
<div>
<div id="P1" style="position:relative; z-index: 21;">
<div id="P1_child" style="z-index: 2;"></div>
</div>
<div id="P2" style="position:relative; z-index: 21;">
<div id="P2_child" style="z-index: 1;"></div>
</div>
</div>
Thanks in advance