Skip to content

Instantly share code, notes, and snippets.

@obenjiro
Last active August 29, 2015 14:02
Show Gist options
  • Save obenjiro/1239edb9489263e0fd8b to your computer and use it in GitHub Desktop.
Save obenjiro/1239edb9489263e0fd8b to your computer and use it in GitHub Desktop.
fight magin collapsing
/*
** http://jsfiddle.net/hEDEK/1/
**
** http://www.w3.org/TR/CSS21/box.html#collapsing-margins
*/
.child {
background: red;
width: 30px;
height: 30px;
margin: 10px;
}
.wrapper {
/* pushing our child element to other block-formatting context */
overflow: hidden;
}
<div class="wrapper"><div class="child">1</div></div>
<div class="wrapper"><div class="child">2</div></div>
<div class="wrapper"><div class="child">3</div></div>
<div class="wrapper"><div class="child">4</div></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment