JSFiddle - React, Tailwind, and code Playground
by Terry Mun
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>
CSS
article{
box-sizing: border-box;
border-right:solid 1px grey;
height:50%;
width:33.333%;
float:left;
padding:0.5%;
text-align:center;
}
section{
border:dotted 1px blue;
margin-top:10px;
margin-bottom:40px;
overflow: hidden;
}