JSFiddle - React, Tailwind, and code Playground

by blowsie

HTML

<table>
    <tr>
        <td>1</td>
        <td>2</td>
    </tr>
    <tr>
        <td>3</td>
        <td>4</td>
    </tr>
</table>

CSS

table{
    width:100%
    table-layout:fixed;
    position:fixed;
    top:0;
    bottom:0;
    right:0;
    left:0;
}
td{
    padding:10px;
    border:1px solid #ccc;
    
}

JavaScript

$(window).resize(function(){
$("table")
.width($(document).width())
.height($(document).height())
});
$(window).trigger("resize")