JSFiddle - React, Tailwind, and code Playground
by cahnory
HTML
<div class="cont">
<div class="item">
hahaha
</div>
<div class="item">
hahaha<br /> hehehe
</div>
<div class="item">
hahaha<br /> hehehe<br /> hohoho
</div>
<div class="item">
hahaha
</div>
</div>
CSS
.cont {
display: table;
width: 100%;
}
.item {
display: table-cell;
background: #DDD;
border: 2px solid #EEE;
padding: 1em;
position: relative;
}
.item:after {
background: #F00;
content: 'test';
position: absolute;
left: 0;
top: 100%;
}