JSFiddle - React, Tailwind, and code Playground

HTML

<style type="text/css">
table.empty{
    width:350px;
    border-collapse: collapse;
    empty-cells:show;
}
td.normal{
    border-style:solid;
    border-width:1px;
    border-color: blue;
}   

</style>
<table >
<tr>
<th></th>
<th>Title one</th>
<th>Title two</th>
</tr>
<tr>
<th>Row Title</th>
<td class="normal">value</td>
<td class="normal">value</td>
</tr>
<tr>
<th>Row Title</th>
<td class="normal">value</td>
<td class="empty"></td>
</tr>
</table>