我想将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>
答案 0 :(得分:1)
在textarea标签中添加:style =“width:100%”
它应该采用父单元格的宽度(td)。