I have a situation which is similar to this fiddle. In Firefox absolute positioning doesn't work correctly.
How can I fix it?
I have a situation which is similar to this fiddle. In Firefox absolute positioning doesn't work correctly.
How can I fix it?
add position:relative
to table too:
http://jsfiddle.net/axEGM/4/
why are you mixing tables and divs?
I did this and it worked
div {
position: absolute;
width: 200px;
background: green;
top: 0px;
left: 0px;
margin-top: 100px;
}