How to prevent the margins of both inner divs from collapsing?
Here's the Stackblitz
.block {
margin: 8px 0;
height: 20px;
width: 40px;
border: 1px solid red;
}
<div>
<div class="block"></div>
</div>
<div>
<div class="block"></div>
</div>