How do you stretch the input field to the height of the table cell using simple css for ie8?
<table> <tr> <td>line1<br />line2</td> <td><input type = "text" /></td> </tr> </table>
height:100% at the input does not work, and does not combine with:
height:inherit; display:inline-block; position:relative;
If no answer is possible then this is normal, I will do some jquery together to do this.
source share