79589909

Date: 2025-04-24 06:05:14
Score: 1
Natty:
Report link

You have several options that create a visual barrier between the elements, which stops margin collapsing

Add overflow: hidden to their parent

.container {
  overflow: hidden;
}

Add a small padding or border to their parent

.container {
  padding-top: 1px; (or padding-bottom)
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: oltrenin