show/hide this revision's text 2 added 32 characters in body

When you want to add whitespace between HTML elements (using CSS), to which element do you attach it?

I'm regularly in situations along these lines:

<body>
  <h1>This is the heading</h1>
  <p>This is a paragraph</p>
  <h1>Here's another heading</h1>
  <div>This is a footer</div>
</body>

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?

Obviously, there's no real technical difference between this:

h1, p { margin-bottom: 1em; }

...and this...

div { margin-top: 1em; }
p { margin-top: 1em; margin-bottom: 1em }

What I'm interested is secondary factors: 1.

  1. Consistency1.
  2. Applicability to all situations1.
  3. Ease / Simplicity1.
  4. Ease of making changes

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?

show/hide this revision's text 1

Where do you put your CSS Margins?

When you want to add whitespace between HTML elements (using CSS), to which element do you attach it?

I'm regularly in situations along these lines:

<body>
  <h1>This is the heading</h1>
  <p>This is a paragraph</p>
  <h1>Here's another heading</h1>
  <div>This is a footer</div>
</body>

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?

Obviously, there's no real technical difference between this:

h1, p { margin-bottom: 1em; }

...and this...

div { margin-top: 1em; }
p { margin-top: 1em; margin-bottom: 1em }

What I'm interested is secondary factors: 1. Consistency 1. Applicability to all situations 1. Ease / Simplicity 1. Ease of making changes

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?