CSS - IE & FF ?!?
CSS - IE & FF ?!?
Out of context: Reply #12
- Started
- Last post
- 15 Responses
- heavyt0
note that the box model is different for IE vs others.
Padding is added to the width of the element in IE. So, 700px + 10 +10 = 720px in IE, every other browser will take the padding from the inside, so 700 = 700.
your math is off too.
half of 700 isnt 370. IE is going to make that DIV 720px, so it should be -360px, all others shoudl be 350px.TR1