JSFiddle - React, Tailwind, and code Playground
by Palpatim
HTML
<table valign="top" height="150">
<tbody>
<tr valign="top">
<td class="profile-company-text pdata">
<label data-bind="text: Email" for="email" class="bold" style="width: 140px; display: inline-block">Email:</label>
<input type="email" id="email" name="email" />
</td>
</tr>
</tbody>
</table>
CSS
table {
border-spacing: 0px;
border-collapse: collapse;
height: 150px;
}
td {
padding: 0;
}
.pdata {
font-size: 10px;
}
.pdata label {
width: 140px;
}