When I give a top-margin
to .galeria
element, why I get also the same top-margin
in .sorial-grande
element?
http://sorialconstrucciones.com/trabajos
.sorial-grande {
position: absolute;
right: 0;
left: 0;
background: url("/drawing.svg");
background-repeat: repeat-x;
height: 337px;
background-position: center center;
}
.galeria {
padding: 40px;
clear: both;
/*margin-top: 350px;*/
img {
width: 207px;
margin-right: 10px;
margin-bottom: 10px;
}
}
<div class="sorial-grande"></div>
<section class="galeria">
<img src="/images/00.jpg"></img>
<img src="/images/02.jpg"></img>
</section>