When writing CSS, is there a particular rule or guideline that should be used in deciding when to use margin and when to use padding?
|
|
Margin is on the outside of block elements while padding is on the inside. use margin to separate the block from things outside it, padding to move the contents away from the edges of the block. |
|||||||||||||
|
|
The best I've seen explaining this with examples, diagrams, and even a 'try it yourself' view is here. The diagram below I think gives an instant visual understanding of the difference.
|
|||||||||||||||
|
|
Here's a great article that was posted on Smashing Magazine recently which gives the best description I've seen (includes nice pictures): http://coding.smashingmagazine.com/2009/10/05/mastering-css-coding-getting-started/#CSS-Basics1 |
|||||||||
|
|
To me the biggest difference between padding and margin is that margins auto-collapse, and padding doesn't. Consider two elements next to each other each with padding of 1em. This padding is considered to be part of the element, and is always preserved. So you will end up with the content of the first element, followed by the padding of the first element, followed by the padding of the second, followed by the content of the second element. Thus content of the two elements will end up being 2em apart. Now replace that padding with 1em margin. Margins are considered to be outside of the element, and margins of adjacent items will overlap. So in this example you will end up with the content of the first element followed by 1em of combined margin followed by the content of the second element. So the content of the two elements is only 1em apart. This can be really useful when you know that you want say 1em of spacing around an element, regardless of what element it is next to. The other two big differences is that padding is included in the click region and background color/image, but not the margin. By default I use margin everywhere, except when I have a border or background and want to increase the space inside that visible box. |
|||||
|
|
|
You might find this useful :) Remember that when you use padding, padding adds to the containers width/height. |
|||||
|
|
Here is some HTML that demonstrates how padding and margin affect clickability, and background filling. An object receives clicks to its padding, but clicks on an objects margin'd area go to its parent.
|
|||
|
|
the thing about margins is that you don't need to worry about the element's width. like when you give something {padding: 10px;} you'll have to reduce the width of the element by 20px to keep the 'fit' and not disturb other elements around it. so i generally start of by using paddings to get everything 'packed' and then use margins for minor tweaks. another thing to be aware of paddings are more consistent on different browsers and IE doesn't treat negative margins very well. |
|||
|
|
|
One thing to note is when auto collapsing margins annoy you (and you are not using background colours on your elements), something it's just easier to use padding. |
|||
|
|
|
I find in many situations if the element is non-complex it can appear like there is no difference to people (so you can use either) although I would suggest using margin. My reasoning for this is that the difference becomes clear when using things such as backgrounds and borders, and when you start using these on an element, then you will be glad you still have padding to play with for the elements content. I hope that makes sense and helps answer the question! |
|||
|
|
|
||||
|
|


