position:relativeposition:relativeGecko is just rubbish
- relative
- The box's position is calculated according to the normal flow (this is called the position in normal flow). Then the box is offset relative to its normal position. When a box B is relatively positioned, the position of the following box is calculated as though B were not offset. The effect of 'position:relative' on table-row-group, table-header-group, table-footer-group, table-row, table-column-group, table-column, table-cell, and table-caption elements is undefined.
9.7 Relationships between 'display', 'position', and 'float'
The three properties that affect box generation and layout — 'display', 'position', and 'float' — interact as follows:
- If 'display' has the value 'none', then 'position' and 'float' do not apply. In this case, the element generates no box.
- Otherwise, if 'position' has the value 'absolute' or 'fixed', the box is absolutely positioned, the computed value of 'float' is 'none', and display is set according to the table below. The position of the box will be determined by the 'top', 'right', 'bottom' and 'left' properties and the box's containing block.
- Otherwise, if 'float' has a value other than 'none', the box is floated and 'display' is set according to the table below.
- Otherwise, if the element is the root element, 'display' is set according to the table below.
- Otherwise, the remaining 'display' property values apply as specified.
Specified value Computed value inline-table table inline, run-in, table-row-group, table-column, table-column-group, table-header-group, table-footer-group, table-row, table-cell, table-caption, inline-block block others same as specified
So, pos:absolute in a td should result in block. And what does that actually mean?
http://www.w3.org/TR/CSS21/generate.html says nothing about position.