JSFiddle - React, Tailwind, and code Playground

by Bianca Kuehweidner

HTML

<table>
    <tr>
        <td>One</td><td>Two</td><td>Three</td>
    </tr>
    <tr>
        <td>One</td><td>Two</td><td>Three</td>
    </tr>
    <tr>
        <td>One</td><td>Two</td><td>Three</td>
    </tr>
    <tr>
        <td>One</td><td>Two</td><td>Three</td>
    </tr>
    
</table>

JavaScript

$(function(){
    winW = $(window).width();       
    firstRow = $('table tr:eq(0) td').length;
    $('table tr td').css({width:winW/firstRow+'px'});
});