I have come across a case where I need a child's margin to expand a parent container. I found that the space outside of the parent is allocated, but the parent itself is not expanded. I then found that by adding `overflow: hidden' to the parent I could fix this issue.
Can anyone shed any light on why this is the case?
UPDATE:
I have found that adding any padding or border value to the parent also fixes this.
overflow: hidden;– pagewil Jul 26 '12 at 11:44padding: 10pxto the parent instead of giving margin to the child. – techfoobar Jul 26 '12 at 11:49