JSFiddle - React, Tailwind, and code Playground

by Nelu Malancea

HTML

<div class='wrap'>
    <table>
        <tr>
            <td>Lorem ipsum dasd asdf sadf asdf </td>
            <td>(51)</td>
        </tr>
    </table>
</div>

CSS

.wrap {
    width: 150px;
}

td {
    white-space: nowrap;
}

table {
    max-width: 150px;
}