Random CSS Thought: Margin-collape CSS property
I was recently introduced to the phenomenon of margin collapsing. If you didn’t click the link, this is what it does: When you have two elements with a bottom and a top margin under each other, the margins will collapse into each other, so that the larger of the two becomes the margin between them.
Delving into it
There are some more advanced rules attached to this:
- It only happens on elements in normal flow under each other.
- It never happens on horizontal margins
- It doesn’t happen on elements with a padding or a border between them
- It doesn’t happen on elements with position:relative; or position:absolute
- It doesn’t happen with floated or cleared elements
That’s quite a list of exceptions, isn’t it? I always use either a top or a bottom margin, never both, so I wasn’t aware of the phenomenon until Wilfred Nas introduced me to it. It happens according to specification, but when you don’t expect it, it’s quite annoying.
There are plenty of use cases to imagine where you want to be able to control the collapsing of the margins, the biggest one being adjacent floats. Floats are often used to display a large number of blocks next and under each other. As we’ve seen in the above list, margin-collapse doesn’t work with horizontal margins or with floats, even though it would be incredibly useful, with developers now using negative margins on parent elements and other wierd tricks to get their layouts right.
Another use case would just be when you have positioned elements and still want margin-collapse on those elements.
Margin-collapse:collapse;
in CSS3 we can pick which border-model we want to use. In CSS2 we already have border-collapse. Why not allow front-end developers to control the margin collapsing as well? Just add a margin-collapse property with values similar to border-collapse: collapse, separate and inherit. perhaps you even want to add margin-collapse-y and margin-collapse-x, but that might be overkill.
Either way, I think it would be a useful addition to CSS and it sounds like a better option to give developers the choice than to spec it in one particular way. What do you think?
I write about useful ideas for CSS more regularly, under the title Random CSS Thought. Feel free to check them out :)
6 comments
margin-collapse-xis not needed, since margin-collapse only appears on elements beneath each other, and not next to each other.The currently spec’ed margin collapse doesn’t do horizontal margin collapsing, no. My point is that it should, given the use case of adjacent floats :)
I’m also new to margin-collapse, but I think it may be really useful in text block elements, eliminating needless margins between headers and paragraphs. Granted, most developers reset default styles, but for a simple job, this would do just as well. Great article!
I was also introduced to collapsible margins recently, at first I was thinking this was a bug, but it’s a standard CSS specification :)
[...] Random CSS Thought: Margin-collape CSS property | KilianValkhof.com - I’ve known about border collapse, but not margin collapse. Here’s a nice article on the subject. [...]
[...] - bookmarked by 1 members originally found by rwarsinger on 2008-07-21 Random CSS Thought: Margin-collape CSS property http://kilianvalkhof.com/2008/css-xhtml/random-css-thought-margin-collape-css-property/ - [...]
Respond
If you post code examples, make sure to escape your HTML.