Pregunta

I have several sections each with margin: 10px; but the vertical margins seem to double up into 20px instead of collapsing into 10px like they should. Any idea why this might be happening?

¿Fue útil?

Solución

  • (Larger) margins of a child element may collapse through their container and push the other element further away
  • Margins of floating elements do not collapse
  • Margins of absolutely positioned elements do not collapse

Otros consejos

I suggest reading the specification. My guess would be that you have either a border, or some padding that is preventing the collapse.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top