JSFiddle - React, Tailwind, and code Playground
by zencd
HTML
<table border=1>
<tr>
<th>abcdefghijklmnopqrstuvwxyz</th>
</tr>
<tr>
<td>abcdefghujklmnopqrst</td>
</tr>
</table>
CSS
th {
width: 50px;
min-width: 50px;
max-width: 50px;
}
td {
overflow-x: scroll;
word-wrap: break-word;
text-overflow: ellipsis;
}