I want to place textareainside the table td. Unfortunately, it remains single-line.
<td align="right" valign="top"> </td>
<td>
<input type="textarea" rows="10" cols="45" name="push_title" />
</td>
If I set its width and height statically, it resizes, but still remains single-line in the middle. How can I solve this problem?
source
share