No margin collapse

Render top and bottom margins *inside* of the parent element

by Lucas Krause

HTML

<div class=a><div class=b>hello world</div></div>

CSS

.a {
    background:#666;
}
.b {
    background:tomato;
    margin:20px;
    padding:10px;
    color:#fff;
}

/**/
.a::before {
    content:"";
    display:table;
}
/** /
.a {
    overflow:hidden;
}
/** /
.a {
    padding:1px;
}
/** /
.a {
    border:solid tomato 1px;
}
/**/