JSFiddle - React, Tailwind, and code Playground

by David Marshall

HTML

<table>
<tr>
  <td>label:</td>
  <td>info</td>
  <td>label:</td>
  <td>more info</td>
</tr>
</table>

CSS

table{
  outline-style:double;
  width: 100%
}
td:nth-child(odd) {
  text-align:right;
}