vote up 3 vote down star

CSS width value = display width of inside?

or

CSS width value = display width of inside + CSS margin-left + CSS margin-right?

flag

6 Answers

vote up 8 vote down

You have to make yourself familiar with the CSS Box Model. It explains where padding, margin and border as well as width work.

However do note that different browsers implement this differently: most notably, Internet Explorer has a box model bug (this is infamously present in IE6 -- I am not aware if this has been fixed in IE7 or IE8) that caused the infamous "quirks mode" CSS hack.

Briefly stated, Internet Explorer set their box model to include padding in computing the width, as opposed the official standard wherein width should only constitute the content.

link|flag
But they fixed it, and you don't have to worry about it as long as you set the correct doctype, to make IE not be in quirks mode. – Breton Jun 11 at 1:34
Yep, by IE I meant IE6. I'll edit my answer for that, thanks. :) – Jon Limjap Jun 11 at 4:56
vote up 1 vote down

As mentioned by others, the rule of thumb is the CSS box model. This works generally as advertised by browsers such as Opera, Firefox & Safari. Internet Explorer is your exception, where the "width" includes the margins, padding and borders.

There are some great tools out there that visually depict how the browser has rendered the content. For Firefox check out Firebug and for Internet Explorer check out the Developer Toolbar.

link|flag
vote up 1 vote down

The Way It Should Be

According to the W3c Box Model, CSS width covers only the "Content" area shown below. Browsers that are not called "Internet Explorer" generally get this right.

Example:

alt text

So, if you have a div with height and width of 50px, padding of 10px, border of 2px, and margin of 5px, the actual, on-screen width should be:

Left Margin 5px + Left Border 2px + Left Padding 10px + Content Width 50px+ Right Padding 10px + Right Border 2px + Right Margin 5px = 84 pixels wide on screen.

Note: In this picture, there appears to be a gap between the padding edge and the border. That is not really the case; it's just a flaw in the illustration.

link|flag
vote up 0 vote down

It not only depends from the browser and version you choose, but also from the doctype of your html document. Internet explorer in "quirks mode" is for example completely different from Internet explorer with doctype XHTML 1.0 Transitional.

link|flag
vote up 0 vote down

Here you can see an animated diagram which "explodes" the box.

link|flag
vote up 0 vote down

I think IE before version 6 incorrectly included borders and padding in width and height. See: Microsoft Admits IE 5 is Messed Up

link|flag

Your Answer

Get an OpenID
or

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