Here's the code I'm working with:
.frm-find-people table td:nth-child(1) {
padding: 5px 15px;
width: 100px
}
.frm-find-people table td:nth-child(2) {
border: 1px solid red;
}
<form class="frm-find-people">
<table>
<tbody>
<tr>
<td>Name</td>
<td><input type="text" name="name"></td>
</tr>
</tbody>
</table>
</form>
I need help making the red box (the second td of the table) expand to fill the remaining width. Can anyone suggest a solution?