JSFiddle - React, Tailwind, and code Playground
by khamer
HTML
<div class="columns">
<div>
<span>Height</span>
<hr />
</div>
<div>
<b>Height</b>
<hr />
</div>
<div>
<strong>Height</strong>
<hr />
</div>
</div>
CSS
.columns {
display: table;
table-layout: fixed;
width: 100%;
}
.columns > div {
display: table-cell;
}
.columns {
font-family: Arial;
font-size: 16px;
line-height: 1.5;
}
strong {
line-height: 22px;
}