I try to nest 3 articels into a section. Why do they spill over the borders of the section?
The CSS:
article{
border-right:solid 1px grey;
height:50%;
width:30%;
float:left;
padding:0.5%;
text-align:center;
}
section{
border:dotted 1px blue;
margin-top:10px;
margin-bottom:40px;
}
The html:
<section>
<h1>Schedule</h1>
<article><h3>Thursday</h3>und so weiter und so fort</article>
<article><h3>Friday</h3>so hübsch und so</article>
<article><h3>Saturday</h3>das geht aber ab hier</article>
</section>