JSFiddle - React, Tailwind, and code Playground
HTML
<table border="0" cellspacing="10">
<tbody class="subdivision">
<tr>
<td colspan="4" style="color:red">Open House</td>
</tr>
<tr>
<td id="label">Date:</td>
<td>
<input type="text" name="day" value="<?php echo $row['day']; ?>">
</td>
<td>Time:</td>
<td>
<input type="text" name="hours" value="<?php echo $row['hours']; ?>">
</td>
<td>price:</td>
<td>
<input type="number" name="price" value="<?php echo $row['price']; ?>">
</td>
</tr>
</tbody>
<tbody class="subdivision">
<tr>
<td colspan="4" style="color:red">Property - Location</td>
</tr>
<tr>
<td>address:</td>
<td>
<input type="text" name="address" value="<?php echo $row['address']; ?>">
</td>
<td>city:</td>
<td>
<input type="text" name="city" value="<?php echo $row['city']; ?>">
</td>
<td>state:</td>
<td>
<input type="text" name="state" value="<?php echo $row['state']; ?>">
</td>
<td>Zip Code:</td>
<td>
<input type="text" name="zip_code" value="<?php echo $row['zip_code']; ?>">
</td>
</tr>
</tbody>
<!--<tr>
<td>Dtypeate:</td> <td><input type="text" name="type" value=" ENTRE VALUE DELETEI "></td>
</tr>-->
<tbody class="subdivision">
<tr>
<td colspan="4" style="color:red">Property - General Specification</td>
</tr>
<tr>
<td>Prop Size:</td>
<td>
<input type="" name="sq_ft" value="<?php echo $row['sq_ft']; ?>">
</td>
<td>Lot Size:</td>
<td>
<input type="" name="lot_sq_ft" value="<?php echo $row['lot_sq_ft']; ?>">
...
CSS
tbody.subdivision {
width: 100%;
margin-right:30px;
border:solid 1px red;
}
#label {
width: 100px;
}