I cannot figure out this positioning problem in Firefox. It doesn\'t seem to follow the absolute positioning rule. Is there something I\'m doing that shouldn\'t be done, but
Aside from the duplicate ID
issue noted by Brandt, assigning positioning to table cells is dodgy at best - I'm surprised it works in any browsers. If you must use a table, wrap the elements you want to position in a div and assign the wrapper div position: relative
:
Three
Two
CSS
#two {
position: absolute;
top: 0;
}
.wrapper {
position: relative;
}