Where do you put your CSS Margins? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T02:59:45Z http://stackoverflow.com/feeds/question/106137 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/106137/where-do-you-put-your-css-margins 6 Where do you put your CSS Margins? Craig Walker 2008-09-19T22:28:15Z 2009-12-04T18:32:26Z <p>When you want to add whitespace between HTML elements (using CSS), to which element do you attach it?</p> <p>I'm regularly in situations along these lines:</p> <pre><code>&lt;body&gt; &lt;h1&gt;This is the heading&lt;/h1&gt; &lt;p&gt;This is a paragraph&lt;/p&gt; &lt;h1&gt;Here's another heading&lt;/h1&gt; &lt;div&gt;This is a footer&lt;/div&gt; &lt;/body&gt; </code></pre> <p>Now, say I wanted 1em of space between each of these elements, but none above the first h1 or below the last div. To which elements would I attach it?</p> <p>Obviously, there's no real <strong>technical</strong> difference between this:</p> <pre><code>h1, p { margin-bottom: 1em; } </code></pre> <p>...and this...</p> <pre><code>div { margin-top: 1em; } p { margin-top: 1em; margin-bottom: 1em } </code></pre> <p>What I'm interested is secondary factors: </p> <ol> <li>Consistency</li> <li>Applicability to all situations</li> <li>Ease / Simplicity</li> <li>Ease of making changes</li> </ol> <p>For example: in this particular scenario, I'd say that the first solution is better than the second, as it's simpler; you're only attaching a margin-bottom to two elements in a single property definition. However, I'm looking for a more general-purpose solution. Every time I do CSS work, I get the feeling that there's a good rule of thumb to apply... but I'm not sure what it is. Does anyone have a good argument?</p> http://stackoverflow.com/questions/106137/where-do-you-put-your-css-margins/106153#106153 3 Answer by Pavling for Where do you put your CSS Margins? Pavling 2008-09-19T22:32:55Z 2008-09-19T22:46:02Z <p>I tend to use a bottom margin on elements when I want them to have space before the next element, and then to use a ".last" class in the css to remove the margin from the last element.</p> <pre><code>&lt;body&gt; &lt;h1&gt;This is the heading&lt;/h1&gt; &lt;p&gt;This is a paragraph&lt;/p&gt; &lt;h1&gt;Here's another heading&lt;/h1&gt; &lt;div class="last"&gt;This is a footer&lt;/div&gt; &lt;/body&gt; div { margin-bottom: 1em; } p { margin-bottom: 1em; } h1 { margin-bottom: 1em; } .last {margin-bottom: 0; } </code></pre> <p>In your example though, this probably isn't <em>that</em> applicable, as a footer div would most likely have it's own class and specific styling. Still the ".last" approach I used works for me when I have several identical elements one after the other (paragraphs and what-not). Of course, I cherry-picked the technique from the "Elements" CSS framework.</p> http://stackoverflow.com/questions/106137/where-do-you-put-your-css-margins/106155#106155 0 Answer by Bryan Friedman for Where do you put your CSS Margins? Bryan Friedman 2008-09-19T22:33:21Z 2008-09-19T22:33:21Z <p>I tend to agree with you that the first option is better. It's generally what I like to do. However, there is an argument to be made that you should specify a margin for each one of those elements and zero it out if you don't want to apply it since browsers all handle margins differently. The &lt;p&gt; (and the &lt;h1&gt; tag too I think) will usually have default margins given by the browser if none are specified.</p> http://stackoverflow.com/questions/106137/where-do-you-put-your-css-margins/106166#106166 1 Answer by Josh Millard for Where do you put your CSS Margins? Josh Millard 2008-09-19T22:34:59Z 2008-09-19T22:34:59Z <p>This going to be driven partly by the specifics of what you're designing for, but there's a sort of rough heirarchy to these things in, say, a typical blog index:</p> <ul> <li>You're going to have one footer on a page.</li> <li>You're going to have one header per <em>entry</em>.</li> <li>You're going to have n paragraphs per entry.</li> </ul> <p>Establish whitespace for your paragraphs knowing that they're going to sometimes occur in sequence -- you need to worry about how they look as a series. From there, adjust your headers to deal with boundaries between entries. Finally, adjust your footer/body spacing to make sure the bottom of the page looks decent.</p> <p>It's a thumbnail sketch. How you ultimately end up assigning your padding is entirely up to you, but if you approach it from an bottom-up perspective you'll likely see less surprises as you tweak <i>first</i> the most common/plentiful elements and then <i>later</i> the less common ones.</p> http://stackoverflow.com/questions/106137/where-do-you-put-your-css-margins/106286#106286 2 Answer by Jim for Where do you put your CSS Margins? Jim 2008-09-19T23:03:56Z 2008-09-19T23:03:56Z <p>If you want some space around an element, give it a margin. That means, in this case, don't just give the <code>&lt;h1&gt;</code> a bottom margin, but give <code>&lt;p&gt;</code> a top margin.</p> <p>Remember, when two elements are vertically adjacent and they don't have a border or padding between them, their margins collapse. That means that only the larger of the two margins is considered - they don't add together. So this:</p> <pre><code>h1, p { margin: 1em; } &lt;h1&gt;...&lt;/h1&gt; &lt;p&gt;...&lt;/p&gt; </code></pre> <p>...would result in a 1em space between the heading and the paragraph.</p> http://stackoverflow.com/questions/106137/where-do-you-put-your-css-margins/110329#110329 1 Answer by Prestaul for Where do you put your CSS Margins? Prestaul 2008-09-21T05:35:17Z 2008-09-21T05:35:17Z <p>The point that Jim is making is the key. Margins collapse between elements, they are not additive. If what you want is to ensure that there is a 1em margin above and below paragraphs and headings and that there is a 1em margin below the header and above the footer, then your css should reflect that.</p> <p>Given this markup (I've added a header and placed ids on the header/footer):</p> <pre><code>&lt;body&gt; &lt;div id="header"&gt;&lt;/div&gt; &lt;h1&gt;This is the heading&lt;/h1&gt; &lt;p&gt;This is a paragraph&lt;/p&gt; &lt;h1&gt;Here's another heading&lt;/h1&gt; &lt;div id="footer"&gt;This is a footer&lt;/div&gt; &lt;/body&gt; </code></pre> <p>You should use this css:</p> <pre><code>#header { margin-bottom: 1em; } #footer { margin-top: 1em; } h1, p { margin: 1em 0; } </code></pre> <p>Now the order of your elements doesn't matter. If you use two consecutive headings, or start the page with a paragraph instead of a heading it will still render the way that you indended.</p> http://stackoverflow.com/questions/106137/where-do-you-put-your-css-margins/111524#111524 1 Answer by Konrad Rudolph for Where do you put your CSS Margins? Konrad Rudolph 2008-09-21T17:44:15Z 2008-09-21T17:44:15Z <p>Using advanced CSS 2 selectors, another solution would be possible that does not rely on a class <code>last</code> to introduce layout info into the HTML.</p> <p>The solution uses the <a href="http://www.w3.org/TR/CSS2/selector.html#adjacent-selectors" rel="nofollow">adjacent selectors</a>. Unfortunately, MSIE 6 doesn't support it yet so reluctance to use it is understandable.</p> <pre><code>h1 { margin: 0 0 1em; } div, p, p + h1, div + h1 { margin: 1em 0 0; } </code></pre> <p>This way, the first <code>h1</code> won't have a top margin while any <code>h1</code> that immediately follows a paragraph or a box <em>has</em> a top margin.</p> http://stackoverflow.com/questions/106137/where-do-you-put-your-css-margins/788641#788641 1 Answer by Geoff Kendall for Where do you put your CSS Margins? Geoff Kendall 2009-04-25T10:12:24Z 2009-04-25T10:12:24Z <p>I'm a relative newbie, but my own solution to the thing I think both you and I came up against (changing margins for one tag may sort out spacing in one part of a site, only to disturb a previously good spacing elsewhere?) is now to allocate an equal margin top and bottom for all tags. You might well want more space above and below an H1 than for an H3 or a p, but in general I think pages look good with equal spaces above and below any given piece of text, so this solution works well for me and meets your 'simple rule of thumb' spec too, hopefully! </p>