I am looking for a way to allow a textarea to expand or grow when clicked or dragged, without affecting the height of the table row it is in. You can see an example of the issue on this CodePen:
https://codepen.io/kerastensorflow/pen/PobaRvK?editors=1010
<Table>
<tr>
<th>Col 1</th>
<th>Col 2</th>
<th>Col 3</th>
<th>Col 4</th>
<th>Col 5</th>
</tr>
<tr style = {{maxHeight:"50px"}}>
<td><input style = {{width:"100px"}} readonly/></td>
<td><input style = {{width:"150px"}}/></td>
<td><input style = {{width:"150px"}}/></td>
<td><input style = {{width:"80px"}} /></td>
<td><textarea></textarea></td>
</tr>
</Table>