Reputation: 2763
My table data height is not increasing ? Why ?
<table>
<tr>
<td>Name : </td>
</tr>
<tr>
<td><input type="text" name = "name" height="80" size="35" /></td>
</tr>
<tr>
<td>E-mail : </td>
</tr>
<tr>
<td><input type="text" name = "name" size="35" /></td>
</tr>
</table>
Upvotes: 0
Views: 252
Reputation: 103135
height is not an attribute of the input element. You may use some CSS for this.
input{
height:30px;
}
Upvotes: 2