JSFiddle - React, Tailwind, and code Playground
by Rob Sedgwick
HTML
<table class="border">
<tr>
<td>
dogs
</td>
<td>
cats
</td>
</tr>
<tr>
<td>
blue tits
</td>
</tr>
</table>
CSS
.border {
background-color: #4385DB;
color: lightgreen;
width: 100%;
}
td:empty {
background-color: yellow;
}