vote up 5 vote down star
1

I don't edit CSS very often, and almost every time I need to go and google the CSS box model to check whether padding is inside the border and margin outside, or vice versa. (Just checked again and padding is inside).

Does anyone have a good way of remembering this? A little mnemonic, a good explanation as to why the names are that way round ...

flag

Is this really that hard to remember? – Jeremy Michael Cantrell Oct 23 '08 at 19:13

10 Answers

vote up 29 vote down check

When working with CSS finally drives you mad the padded cell that they will put you in has the padding on the inside of the walls.

link|flag
vote up 2 vote down

pin - P is in

link|flag
vote up 1 vote down

Print the diagram from the Box Dimensions section of the specification, and put it on the wall.

link|flag
vote up 2 vote down

To me, "padding" just sounds more inner than "margin". Perhaps thinking about the printed page would help? Margins are areas on the far outside - generally, you cannot even print to the edge - they are unmarkable. Within those margins, the content could be padded to provide an extra barrier between the content and the margin?

Once you work in CSS enough, it'll become second nature to remember this.

link|flag
vote up 1 vote down

use firebug to help you see.

link|flag
vote up 2 vote down

I've just learnt it over time - the box model is fairly simple but the main reason people find it hard is because body doesn't visibly break the model.

Really, if you give body a margin and a background you should see it surrounded by a white strip. However this isn't the case - body's padding is the same as margin. This establishes a few incorrect things about the box model.

I usually think about it like this:

  • margin = spacing around the box;
  • border = the edge of the box;
  • padding = space inside the box.
link|flag
vote up 0 vote down

Create yourself a commented base stylesheet which you can use as a template whenever you need to create a new site or edit an existing site.

You can add to it as you grow in knowledge and apply it to various different browsers to see how various things behave.

You'll also be able to add in comments or examples about other hard to remember stuff or stuff that is counter intuitive.

link|flag
vote up 0 vote down

Add border, even just temporarily. As you play with the numbers, you'll see the difference.

In fact, temporary borders around elements is a helpful way to work, such that you can see why floats are dropping, etc.

link|flag
vote up 0 vote down

I know this is an answer to your question, but more of a tip. Whenever I am dealing with margin and padding, I will add a border around the part you are working with, then from there, it shows me the room I have to work with. When I am all set, I remove the border.

link|flag
vote up 2 vote down

You are using a box. If you were putting something in a box you would put some padding inside to make sure it didn't smack against the sides. Margin would then be the other thing.

link|flag

Your Answer

Get an OpenID
or

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