JSFiddle - React, Tailwind, and code Playground
HTML
<table>
<tr>
<td>
<div class="inner">
Content
</div>
</td>
<td>
<div class="inner">
<span style="font-size:40px;">AAAA</span>
</div>
</td>
<td>
<div class="inner">
<span style="font-size:8px;">asd</span>
</div>
</td>
</tr>
</table>
CSS
table td {
padding: 15px 10px;
border-bottom: 1px solid #e5e5e5;
}
table td div.inner {
padding: 10px 25px 10px 0;
position: relative;
}
table td div.inner:after {
position: absolute;
top: 50%;
margin-top: -20px;
margin-bottom: -20px;
margin-left: 23px;
height:40px;
width: 1px;
content: "";
background-color: #e5e5e5;
}