I want to disconnect the margin of my too div, because the margin bottom of the first div superimpose with the margin top of the second div:
HTML:
<div>This element has a margin of 70px.</div>
<div>This element has a margin of 70px.</div>
css:
div {
margin: 70px;
border: 1px solid #4CAF50;
}