JSFiddle - React, Tailwind, and code Playground

by lennyekberg

HTML

<table autosize="1">
       <!-- Set the cell widths in the first row -->
       <tr>
            <td width="30%">Cell 1</td>
            <td width="30%">Cell 2</td>
            <td>Cell 3</td><!-- This column will fill the rest of the table width (about 40%, minus the border width)
       </tr>

       <!-- No need to set them for any other rows -->
       <tr>
            <td>Cell 1a</td>
            <td>Cell 2a</td>
            <td>Cell 2a</td>
       </tr>
    </table>