JSFiddle - React, Tailwind, and code Playground
by SpiceLab
HTML
<table>
<tr>
<td><input type="text" /><button>ok</button></td>
</tr>
</table>
CSS
* {box-sizing:border-box}
table {width:100%;min-width:600px;border:thin solid #000;border-collapse:collapse}
input {width:90%}
button {width:10%}