How to remember in CSS that margin is outside the border, and padding inside - Stack Overflow most recent 30 from stackoverflow.com 2009-12-14T22:20:11Z http://stackoverflow.com/feeds/question/32668 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/32668/how-to-remember-in-css-that-margin-is-outside-the-border-and-padding-inside 5 How to remember in CSS that margin is outside the border, and padding inside Hamish Downer 2008-08-28T16:06:04Z 2008-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#32673 2 Answer by Niyaz for How to remember in CSS that margin is outside the border, and padding inside Niyaz 2008-08-28T16:07:14Z 2008-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#32674 1 Answer by Peter Hilton for How to remember in CSS that margin is outside the border, and padding inside Peter Hilton 2008-08-28T16:07:38Z 2008-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#32675 2 Answer by Chris Marasti-Georg for How to remember in CSS that margin is outside the border, and padding inside Chris Marasti-Georg 2008-08-28T16:08:21Z 2008-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#32680 1 Answer by RedWolves for How to remember in CSS that margin is outside the border, and padding inside RedWolves 2008-08-28T16:10:12Z 2008-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#32692 30 Answer by Si Keep for How to remember in CSS that margin is outside the border, and padding inside Si Keep 2008-08-28T16:13:09Z 2008-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#32696 2 Answer by Ross for How to remember in CSS that margin is outside the border, and padding inside Ross 2008-08-28T16:13:49Z 2008-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#32726 0 Answer by Tim Saunders for How to remember in CSS that margin is outside the border, and padding inside Tim Saunders 2008-08-28T16:24:24Z 2008-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#230100 0 Answer by John Dunagan for How to remember in CSS that margin is outside the border, and padding inside John Dunagan 2008-10-23T15:09:01Z 2008-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#230225 0 Answer by Brad for How to remember in CSS that margin is outside the border, and padding inside Brad 2008-10-23T15:37:58Z 2008-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#230271 2 Answer by Mr Scratch for How to remember in CSS that margin is outside the border, and padding inside Mr Scratch 2008-10-23T15:46:25Z 2008-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>