vote up 2 vote down star

In this case, internet explorer doesn't seem to give the right amount of margin. It looks like it measures the margin from the top of the box and ignores the padding. Why is this? Is there a good workaround? Here's an example:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title></title>

        <style type="text/css">
            .messagebox
            {
                border: solid 2px black;
                background: blue;
                color: white;
                padding: 10px; /* Problem only when padding set */
            }

            h1, h2, h3, h4 
            {
               margin-top: 12px;
            }

        </style>
    </head>
    <body>
        <div class="messagebox" style="width: 300px">
            <h4 style="text-align: center">In IE, this text is 10px higher than in FF.</h4>
        </div>
    </body>
    </html>

I'm working in IE7 and FF3. Thanks.

flag

67% accept rate

3 Answers

vote up 2 vote down check

Welcome to the IE box model bug

link|flag
The quick fix to this problem is to change your doctype to HTML 4.01 strict. – KeRiCr May 29 at 18:04
Thanks for the link. With regard to the doctype tag, I changed it to HTML 4.01 strict but it doesn't seem to make a difference: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "w3.org/TR/html4/strict.dtd">; – Kyle Ryan May 29 at 18:12
vote up 0 vote down

You may try

body{
zoom:1;
}

I'm not sure if this will help, but it could be a quick fix if it does!

link|flag
Tried it--no luck. – Kyle Ryan May 29 at 18:14
vote up 0 vote down

I don't have a specific answer but I have struggled with the differences between IE and FF as it relates to margins and padding.

You may need to explicitly put in the doc type tag. Especially strict mode. That should get them force them into the same layout model. From there on you are dealing with an art rather than a science.

Good luck.

link|flag

Your Answer

Get an OpenID
or

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