<div class="box"> <div class="text">This is a bunch of text split into three columns using the CSS `colomns` property.The text is epually distributed over the colums.</div> </div>
.box { width: 780px; height: 200px; margin: 70px; border: 1px solid red; } .text { padding:40px 20px; column-count: 3; }