JSFiddle - React, Tailwind, and code Playground
HTML
<!--Notice how removing the class changes how the table displays-->
<table class='paddingBetweenRows'>
<tr>
<td>hello</td>
<td>world</td>
<td>how</td>
<td>are</td>
<td>you?</td>
</tr>
<tr>
<td>hello</td>
<td>world</td>
<td>how</td>
<td>are</td>
<td>you?</td>
</tr>
</table>
CSS
.paddingBetweenRows td
{
padding:0 15px 0 15px;
}