JSFiddle - React, Tailwind, and code Playground

by shahverdy

HTML

<table class="subjects">
    <tr><td>sdfsdfsdf</td><td>sdfsdfsdf</td></tr>
    <tr><td>sdfsdfsdf</td><td>sdfsdfsdf</td></tr>
    <tr><td>sdfsdfsdf</td><td>sdfsdfsdf</td></tr>
    <tr><td>sdfsdfsdf</td><td>sdfsdfsdf</td></tr>
    
    
</table>

CSS

table.subjects {
border-width: 1px;
border-spacing: 2px;
border-style: solid;
border-color: gray;
border-collapse: collapse;
background-color: white;}

table.subjects th {
border-width: 1px;
padding: 1px;
border-style: inset;
border-color: gray;
background-color: white;
-moz-border-radius: ;}

table.subjects td {
border-width: 1px;
padding: 1px;
border-style: solid;
border-color: gray;
background-color: white;
-moz-border-radius: ;}