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 ?
|
|
Margins will collapse by design. Add 1px of padding as well and it should work fine. |
|||||||||||||
|
|
I get the solution with overflow:auto in the parent div. |
|||
|
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 InsteadThis just means instead of using Weird Hack I DiscoveredI doubt I discovered this initially, but the other day I solved the problem like this. I had a
This made my margin work. You can also try using a border, like 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 Further Reading |
||||
|
|