JSFiddle - React, Tailwind, and code Playground
HTML
<table class="actions">
<tr>
<td>Failed</td>
<td>Create</td>
<td>Normal name.txt</td>
</tr>
<tr>
<td>Failed</td>
<td>Create</td>
<td>Veryveryveryveryveryveryveryveryveryveryveryveryveryveryveryveryveryveryveryveryveryveryveryveryveryveryveryveryveryveryveryveryverylongname.txt</td>
</tr>
</table>
CSS
.actions {
width:100%;
}
.actions tr td {
white-space: nowrap;
}
.actions tr td:nth-child(3) {
white-space: normal;
word-break: break-all;
}