JSFiddle - React, Tailwind, and code Playground

HTML

<table>
    <tr>
        <td>
            Text with spaces
        </td>
        <td>
            TextWithoutAnySpaces
        </td>
    </tr>
</table>

CSS

table
{
    table-layout:fixed;
    border-spacing:0;
    border-collapse:collapse;
}
table td
{
    width:40px;
    padding:4px;
    border:solid 1px red;
    word-break:break-all;
}