Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.


I have a problem with the margin-top in a nested div,
when I try apply margin-top in a nested div the margin is applicated to parent div,
any idea ?

share|improve this question
in some cases you could also try padding-top:40px just for testing. You can also use padding-top:40px !important; – Junior Mayhé May 23 '10 at 1:19

3 Answers

up vote 12 down vote accepted

Margins will collapse by design. Add 1px of padding as well and it should work fine.

share|improve this answer
thanks, now I understand. – JuanPablo May 23 '10 at 1:47
wow) I've spend several hours stuggling with that. thanks! – alexanderb Nov 16 '10 at 19:17
7  
but I still do not really undrestans why it works like that.. – alexanderb Nov 16 '10 at 19:17
very nice solution man – Omid Sep 29 '11 at 9:59
This has quite an acceptable explanation: howtocreate.co.uk/tutorials/css/margincollapsing – Fronker Apr 9 at 13:18

I get the solution with overflow:auto in the parent div.

share|improve this answer
4  
That's by far the best solution... this should be the correct answer! – Pier Apr 19 '12 at 18:25
I second that! Exactly what I was looking for! – Psyked Oct 25 '12 at 12:22
Nice think. I'd love to know, why that works, though... – Fronker Apr 9 at 13:21

This is how margins work.. the margin is the space between the next element with a margin / padding / similar. It is not necessarily defined as its parent element. Consult the spec.

Here are some things you can do as a workaround

Use Padding Instead

This just means instead of using margin-top: 10px; you use padding-top: 10px;. This is not suitable for every occasion.

Weird Hack I Discovered

I doubt I discovered this initially, but the other day I solved the problem like this. I had a <div id="header" /> that I wanted to give a top margin too, and its top margin was pushing the parent (body element) down as well. So I did this on the body element...

body {
    padding-top: 1px;
    margin-top: -1px;
}

This made my margin work. You can also try using a border, like border: 1px solid #ccc.

It would also be wise to leave a note in the CSS comments to explain why you have that peculiar pair of rules. I just added /* this is to stop collapsing margins */.

Further Reading

Check out these other questions on Stack Overflow

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.