JSFiddle - React, Tailwind, and code Playground

by qustosh

HTML

<table id="tab">
    <tr>
        <td>hey</td>
        <td>there</td>
        <td id="bigger">you</td>
    </tr>    
</table>

CSS

#tab{
    border: 1px solid black;
    border-collapse:collapse;
}
#tab td{
    //border: 1px solid black;
    padding: 10px;
}
#bigger{
    border-right: 1px red solid;
    background-color: yellow;
}
td{
    
}