Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a series of elements like this:

<h1>...</h1>
<p>.......</p>
<h1>...</h1>
<p>.......</p>
etc. etc.

I have a 5px top margin on h1, and 10px bottom margin on p. But the resulting margin is only 10px. If I increase the bottom margin to 50px and the top margin to 40px the total margin will only be 50px. It will be whatever the biggest margin is. Why? And how can I fix it?

share|improve this question
Are all these elements display: block? – Pekka 웃 Sep 4 '10 at 11:24
post a sample page please – Moin Zaman Sep 4 '10 at 11:29

1 Answer

up vote 9 down vote accepted

The behavior you're seeing is known as margin collapse, and it is an expected behavior. Basically, when the margins of two block level elements touch, they collapse, and only the largest one will appear.

Margins collapse between adjacent elements. In simple terms, this means that for adjacent vertical block-level elements in the normal document flow, only the margin of the element with the largest margin value will be honored, while the margin of the element with the smaller margin value will be collapsed to zero.

http://reference.sitepoint.com/css/collapsingmargins

There is no one fix for this - you can try using padding instead, or simply increase the margins by taking this into account.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.