How to remember in CSS that margin is outside the border, and padding inside - Stack Overflow most recent 30 from stackoverflow.com2009-12-14T22:20:11Zhttp://stackoverflow.com/feeds/question/32668http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/32668/how-to-remember-in-css-that-margin-is-outside-the-border-and-padding-inside5How to remember in CSS that margin is outside the border, and padding insideHamish Downer2008-08-28T16:06:04Z2008-10-23T15:46:25Z
<p>I don't edit CSS very often, and almost every time I need to go and google the <a href="http://www.w3.org/TR/REC-CSS2/box.html" rel="nofollow">CSS box model</a> to check whether padding is inside the border and margin outside, or vice versa. (Just checked again and padding is inside).</p>
<p>Does anyone have a good way of remembering this? A little mnemonic, a good explanation as to why the names are that way round ...</p>
http://stackoverflow.com/questions/32668/how-to-remember-in-css-that-margin-is-outside-the-border-and-padding-inside/32673#326732Answer by Niyaz for How to remember in CSS that margin is outside the border, and padding insideNiyaz2008-08-28T16:07:14Z2008-08-28T16:07:14Z<p>pin - P is in</p>
http://stackoverflow.com/questions/32668/how-to-remember-in-css-that-margin-is-outside-the-border-and-padding-inside/32674#326741Answer by Peter Hilton for How to remember in CSS that margin is outside the border, and padding insidePeter Hilton2008-08-28T16:07:38Z2008-08-28T16:07:38Z<p>Print the diagram from the <a href="http://www.w3.org/TR/CSS2/box.html#box-dimensions" rel="nofollow">Box Dimensions</a> section of the specification, and put it on the wall.</p>
http://stackoverflow.com/questions/32668/how-to-remember-in-css-that-margin-is-outside-the-border-and-padding-inside/32675#326752Answer by Chris Marasti-Georg for How to remember in CSS that margin is outside the border, and padding insideChris Marasti-Georg2008-08-28T16:08:21Z2008-08-28T16:08:21Z<p>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?</p>
<p>Once you work in CSS enough, it'll become second nature to remember this.</p>
http://stackoverflow.com/questions/32668/how-to-remember-in-css-that-margin-is-outside-the-border-and-padding-inside/32680#326801Answer by RedWolves for How to remember in CSS that margin is outside the border, and padding insideRedWolves2008-08-28T16:10:12Z2008-08-28T16:10:12Z<p>use firebug to help you see.</p>
http://stackoverflow.com/questions/32668/how-to-remember-in-css-that-margin-is-outside-the-border-and-padding-inside/32692#3269230Answer by Si Keep for How to remember in CSS that margin is outside the border, and padding insideSi Keep2008-08-28T16:13:09Z2008-08-28T16:13:09Z<p>When working with CSS finally drives you mad the padded cell that they will put you in has the padding on the <em>inside</em> of the walls.</p>
http://stackoverflow.com/questions/32668/how-to-remember-in-css-that-margin-is-outside-the-border-and-padding-inside/32696#326962Answer by Ross for How to remember in CSS that margin is outside the border, and padding insideRoss2008-08-28T16:13:49Z2008-08-28T16:13:49Z<p>I've just learnt it over time - the box model is fairly simple but the main reason people find it hard is because <code>body</code> doesn't visibly break the model.</p>
<p>Really, if you give <code>body</code> a margin and a background you should see it surrounded by a white strip. However this isn't the case - <code>body</code>'s padding is the same as margin. This establishes a few incorrect things about the box model.</p>
<p>I usually think about it like this: </p>
<ul>
<li>margin = spacing around the box; </li>
<li>border = the edge of the box; </li>
<li>padding = space inside the box.</li>
</ul>
http://stackoverflow.com/questions/32668/how-to-remember-in-css-that-margin-is-outside-the-border-and-padding-inside/32726#327260Answer by Tim Saunders for How to remember in CSS that margin is outside the border, and padding insideTim Saunders2008-08-28T16:24:24Z2008-08-28T16:24:24Z<p>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.</p>
<p>You can add to it as you grow in knowledge and apply it to various different browsers to see how various things behave.</p>
<p>You'll also be able to add in comments or examples about other hard to remember stuff or stuff that is counter intuitive.</p>
http://stackoverflow.com/questions/32668/how-to-remember-in-css-that-margin-is-outside-the-border-and-padding-inside/230100#2301000Answer by John Dunagan for How to remember in CSS that margin is outside the border, and padding insideJohn Dunagan2008-10-23T15:09:01Z2008-10-23T15:09:01Z<p>Add border, even just temporarily. As you play with the numbers, you'll see the difference.</p>
<p>In fact, temporary borders around elements is a helpful way to work, such that you can see why floats are dropping, etc.</p>
http://stackoverflow.com/questions/32668/how-to-remember-in-css-that-margin-is-outside-the-border-and-padding-inside/230225#2302250Answer by Brad for How to remember in CSS that margin is outside the border, and padding insideBrad2008-10-23T15:37:58Z2008-10-23T15:37:58Z<p>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.</p>
http://stackoverflow.com/questions/32668/how-to-remember-in-css-that-margin-is-outside-the-border-and-padding-inside/230271#2302712Answer by Mr Scratch for How to remember in CSS that margin is outside the border, and padding insideMr Scratch2008-10-23T15:46:25Z2008-10-23T15:46:25Z<p>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.</p>