I have created a section containing three articles and I am confused about the margin/padding between the articles:
This is my HTML code:
<section id="home">
<article>
<h1>Overview</h1>
</article>
<article>
<h1>People</h1>
</article>
<article>
<h1>Links</h1>
</article>
</section>
And this is my CSS code:
section {
width: 87%;
margin: 0px auto;
}
article {
width:33%;
font-family: 'Open Sans', sans-serif;
background-color:blue;
display: inline-block;
margin:0px;
padding: 0px;
}