B
Brenda
Firefox and IE interpret CSS differently when it comes to
width/padding/margins/borders. IE, when in quirks mode, thinks the padding
and borders are included WITHIN the width; Firefox thinks they are OUTSIDE
the width.
See a thorough explanation here:
http://www.ilovejackdaniels.com/css/box-model/ and here:
http://www.info.com.ph/~etan/w3pantheon/style/abmh.html
So, you have to write your CSS to accommodate both interpretations.
Try using this in your .contentwide in place of your width=650px. Yes, it
looks really weird, but it takes advantage of the idiosyncracies of the
various browsers.
width: 610px !important;
width /**/:650px; /* BOX MODEL HACK */
....Brenda
width/padding/margins/borders. IE, when in quirks mode, thinks the padding
and borders are included WITHIN the width; Firefox thinks they are OUTSIDE
the width.
See a thorough explanation here:
http://www.ilovejackdaniels.com/css/box-model/ and here:
http://www.info.com.ph/~etan/w3pantheon/style/abmh.html
So, you have to write your CSS to accommodate both interpretations.
Try using this in your .contentwide in place of your width=650px. Yes, it
looks really weird, but it takes advantage of the idiosyncracies of the
various browsers.
width: 610px !important;
width /**/:650px; /* BOX MODEL HACK */
....Brenda