JSFiddle - React, Tailwind, and code Playground
by Vitaliy
HTML
<table>
<tr>
<td>loooooooooooooooooong word</td>
<td>shor word</td>
</tr>
</table>
CSS
table{
table-layout:fixed;
width:300px;
border-collapse:collapse;
}
td{
width:50%;
border:1px solid #333;
overflow:auto;
}