I just discovered strange behaviour of Firefox.
If I have a table cell of 100px height, and add 20px padding to it - it's total height should become 140px.
All browsers act correctly, Firefox 8.0 ignores the padding:
Anyone knowing a fix?
|
I just discovered strange behaviour of Firefox. If I have a table cell of 100px height, and add 20px padding to it - it's total height should become 140px. All browsers act correctly, Firefox 8.0 ignores the padding: Anyone knowing a fix? |
||||
| show 3 more comments |
|
It seems the best cross browser solution may be to set the full height of the table row equal to height and padding of the cell:
|
|||
|
|
|
that is a strange behave. add But I also do not know why? I searched in UPDATE: http://jsfiddle.net/8wDde/7/ add |
|||||||||||||
|
|
I couldn't find any information about this on Google, so one way to fix it for Firefox would be to use a CSS hack.
Obviously, if the height was That targets all Firefox versions, I'm not sure if theres a FF8 specific css hack. You can see this demo here: http://jsfiddle.net/charlescarver/8wDde/2/ Edit: I like Giberno's answer more |
|||
|
This is a fuller description of a couple of comments I made on another question, hopefully a little bit clearer. Note that Opera has the same behaviour as Firefox. In the diagram above, the total cell area is the dark box, and the text Now, the CSS 2.1 spec says:
So On the other hand, If (C) + Top Padding + Bottom Padding is greater that 100px, the row height will expand to accommodate the full height of (C) + Top Padding + Bottom Padding. Then You can see this in action at http://jsfiddle.net/Ez7xz/ The final confusing factor is the value of the computed height of the |
||||
|
|
60px. – Jared Farrish Dec 3 '11 at 18:46