Hi,
I'd like to position a div on top of another div, but absolutely, something like:
<div id='parent'>
<div id='under' z-index='1' width='100' height='100'></div>
<div id='over' z-index='2' width='100' height='100'></div>
</div>
I know the width and height I need the two divs to be, but I don't know what absolute position they should be (if I read correctly, we need to specify absolute positioning for divs using z-index. Since they're both in a parent div, can I just set the x/y positions to both be 0,0, so that they're just absolutely positioned relative to their parent? Ehh, probably not - what can I do here?
Thanks