Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to absolutely position an element inside a table cell. The TD has position:relative and the element has position:absolute.

This works great in all browsers except in Firefox where it is positioned relative to an ancestor relative container.

You can see this reproduced in this fiddle: http://jsfiddle.net/ac5CR/1/

Does anyone know if I miss some CSS setting that can fix that in Firefox?

share|improve this question
In firefox the green indicator div is located in the first row and it should be in the 3rd row as in chrome and IE. – Variant Jan 9 '12 at 14:15
Looks like you're using tables for layout. Are you? – Šime Vidas Jan 9 '12 at 14:22
unfortunalty I do. I am using jqGrid which uses tables internally. I have to position an indicator inside a cell. – Variant Jan 9 '12 at 14:25

1 Answer

up vote 7 down vote accepted

the element is not a block element. add to the style display:block, you will get the needed behavior.

share|improve this answer
It indeed works now although the TD stops behaving like a table cell... I have to specify explicit height for the cell to align with the rest of the cells. – Variant Jan 9 '12 at 14:22
1  
To expand, the td element's default display value is typically "table-cell" (and given Firefox's support for the "table-cell" display value, this is likely what it defaults to). – Shauna Jan 9 '12 at 14:23
Awh man thank you! – Kirk Feb 11 at 19:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.