JSFiddle - React, Tailwind, and code Playground

by Osman Salihovic

HTML

<table border="1" bordercolor="FFCC00" style="background-color:FFFFCC" width="400" cellpadding="3" cellspacing="3">
    <tr>
        <td>Table Cell</td>
        <td>Table Cell</td>
    </tr>
    <tr>
        <td><div class="first">
    <div class="second">Some content here...
    </div>
</div></td>
        <td>Table Cell</td>
    </tr>
</table>

CSS

.first{
  padding-bottom: 1px;
    border-bottom: 2px black solid;
}
.second{
  border-bottom: 1px black solid;
}