JSFiddle - React, Tailwind, and code Playground

by operatino

HTML

<div class="table-w">
    <table>
        <tr>
            <td><div>column1column1column1</div></td>
            <td>column2</td>
        </tr>
    </table>
</div>

CSS

.table-w {
    width: 200px;
    background: red;
}

.table-w table {
    width: 100%;
}

.table-w table td div {
    word-wrap: break-word;
    width: 100px;
}