Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/html/85.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
表单中的CSS/HTML文本区域调整大小_Html_Css_Forms_Textarea_Window Resize - Fatal编程技术网

表单中的CSS/HTML文本区域调整大小

表单中的CSS/HTML文本区域调整大小,html,css,forms,textarea,window-resize,Html,Css,Forms,Textarea,Window Resize,如何使注释部分中的文本区域与该部分一样大,而不仅仅是一行,并从该部分的请求开始,而不是从中间开始。 是代码的链接 HTML 您应该在表单中使用textarea <textarea cols="9(as u r desire)" rows="9(as u r desire)" name="comment"></textarea> 与此相反: <input type="text" style="height:220px;" > 您应该在表单中使用texta

如何使注释部分中的文本区域与该部分一样大,而不仅仅是一行,并从该部分的请求开始,而不是从中间开始。 是代码的链接

HTML


您应该在表单中使用textarea

<textarea cols="9(as u r desire)" rows="9(as u r desire)" name="comment"></textarea>

与此相反:

<input type="text" style="height:220px;" >

您应该在表单中使用textarea

<textarea cols="9(as u r desire)" rows="9(as u r desire)" name="comment"></textarea>

与此相反:

<input type="text" style="height:220px;" >

只需使用
而不是
只需使用
而不是