I am practicing with a web, and I have created a container and inside it I have created one that contains an image, an h4 and a paragraph. The problem is that the section is 380px high, and the article is almost 700px low, as if there was a spacing or margin. I leave the codes:
HTML
<section>
<article id="primero" class="articulos">
<img src="img/icono1.png">
<h4>LOREM IPSUM</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua..</p>
</article>
</section>
CSS
section{
position:relative;
top:560px;
width: 100%;
height: 380px;
display:block;
}
.articulos{
clear:both;
display: inline-block;
width:25%;
top:0;
}