Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
48  
Very good question! – Adam Harte Feb 3 '10 at 3:29
@AdamHarte Very good comment! – Cole Johnson Feb 7 at 15:44
2  
@ColeJohnson Very good comment! ;) – Adam Harte Feb 8 at 4:21
2  
Also padding adds to the overall width of the element. This can cause a lot of frustration with elements shifting out of place. – Barry Feb 25 at 1:50
@AlexAngas i believe the correct, or at least the useful answer, is by pavon below. – randomstring Apr 4 at 6:08

10 Answers

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.

share|improve this answer
6  
Thanks, that was very concise! – eipxen Oct 7 '11 at 14:57
Very helpful, thanks! – Martin Törnwall Nov 13 '12 at 16:13
phew, thank you for being concise -- such a rarity on stackoverflow! i am relieved i did not have to read sections upon sections on ems and pixels, inches and dpis, selectors, and five pages on medieval margins. i salute you. thank you. – randomstring Apr 4 at 6:01
1  
yet, the correct answer is by @pavon below. margins of adjacent elements overlap whereas padding does not overlap. i. e., the total separation is padding(A) + padding(B) + max(margin(A), margin(B)) – randomstring Apr 4 at 6:04

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.

enter image description here

share|improve this answer
4  
For frequent visitors of w3schools i recommend to have a look at w3fools.com Also, an alternative for above picture, though i must admit it lacks its simplicity: developer.mozilla.org/en-US/docs/CSS/box_model – gabtub Sep 7 '12 at 7:59
3  
Yes, I give the link to the source in the post. I'm not trying to to take credit, just trying to point out a good resource that helped me. – Scott Oct 10 '12 at 20:54
2  
@gabtub Who is fool now - that picture from w3schools is much more intuitive than from w3.org or mozilla. Clarity is sometimes better than exactness (though not always sufficient). – psycho brm Apr 7 at 20:43

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

share|improve this answer
9  
Direct link to padding vs margin section: smashingmagazine.com/2009/10/05/… – donut Feb 3 '10 at 3:27
Good one, cheers ;) – codedas Feb 3 '10 at 3:29
link is returning a 403 – Casey Jul 15 '11 at 20:56

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.

share|improve this answer
this is the correct answer. thank you @pavon. – randomstring Apr 4 at 6:05
+1 Very good point about margin overlapping. – 0xc0de Apr 22 at 7:28

You might find this useful :)

Remember that when you use padding, padding adds to the containers width/height.

share|improve this answer
7  
Good tip about padding adding to containers size. – Adam Harte Feb 3 '10 at 3:30

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.

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


<style>
    .outer {
        padding:10px;
        background:red;
    }

    .inner {
        margin:10px;
        padding:10px;
        background:blue;
        border:solid white 1px;
    };

</style>

<script src="http://code.jquery.com/jquery-latest.js"></script>

<body>

    <div class="outer">
        <div class="inner" style="position:relative; height:0px; width:0px">

        </div>
    </div>

    <script type="text/javascript">

        $(".outer").click(function(e) { alert("outer"); e.stopPropagation(); });
        $(".inner").click(function(e) { alert("inner"); e.stopPropagation(); });

    </script>

</body>
</html>
share|improve this answer
you can run similar code on jsfiddle: jsfiddle.net/fschwiet/y74Nz/3 – Frank Schwieterman Oct 13 '12 at 1:47

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.

share|improve this answer

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.

share|improve this answer

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!

share|improve this answer
MARGIN vs PADDING:
  1. Margin is used in an element to create distance between that element and other elements of page. Where padding is used to create distance between content and border of an element.

  2. Margin is not part of an element where padding is part of element.

enter image description here

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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