JSFiddle - React, Tailwind, and code Playground

by Samir Chaves

HTML

<table>
    <tr>
        <td class="full" >
            <input type="text">
        </td>
        <td  class="parse" >
            <input type="submit">
        </td>
    </tr>
</table>

CSS

table{
    width: 100%;
}
td{
    border: 0;
    padding: 0 2px 0 2px;
    margin: 0 2px 0 2px;
}
input[type="submit"], input[type="text"] {
    width: 100%;
}
.parse{
     min-width: 70px;
     width: 70px;   
}
.full{
    width: 1fr;   
    min-width: 100px;
}