I have the following:
<div>
<p>some content</p>
</div>
or:
<div>
some content
</div>
Without the:
<p>some content</p>
...the div's positioning is different. It appears as though block content INSIDE the div is affecting the div's outer (top) margin. So is the div pushed down? I would think that content inside the div, like a block would not affect the containing block's margin. Why is the margin of the div affected by the content inside of it?