JSFiddle - React, Tailwind, and code Playground

HTML

<div class="third">
        Lorem Ipsum
    </div>
    <div class="third">
        Lorem Ipsum
    </div>
    <div class="third">
        <div class="header">Lorem Ipsum</div>
    </div>

CSS

.third {
width:100px;
display:inline-block;
border-right:1px solid black;
height:400px;
  vertical-align: top;
}
.header {
margin-left:16%;
font-family:Arial;
font-size:200%;
}