将textarea列的no设置为等于容器/表的宽度

时间:2014-06-05 18:32:38

标签: javascript html css

我想将textarea标签的宽度设置为完全等于table的宽度。有没有办法实现这一点。

<table width="60%">
<tr>
<td>
<textarea name="reply_comment" id="reply_comment" cols="90"  rows="1"  width="100%"   placeholder="Type your comment here...." required></textarea>
</td>
</tr>
</table>

1 个答案:

答案 0 :(得分:1)

在textarea标签中添加:style =“width:100%”

它应该采用父单元格的宽度(td)。