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