JSFiddle - React, Tailwind, and code Playground
HTML
<table class="formTable">
<tr>
<td class="col1">Report Number</td>
<td class="col2"><input type="text"/>
</tr>
<tr>
<td class="col1">Report Type</td>
<td class="col2"><select></select></td>
</tr>
</table>
CSS
.formTable {
border-color: black;
}
.formTable td {
padding: 10px;
}
.formTable .col1 {
text-align: right;
}
.formTable .col2 {
width: 100%;
}
.col2 {
width: 100%;
}