Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/ssh/2.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
调整HTML中输入框的文本区域大小_Html_Textbox_Resize - Fatal编程技术网

调整HTML中输入框的文本区域大小

调整HTML中输入框的文本区域大小,html,textbox,resize,Html,Textbox,Resize,我是HTML新手,我正在尝试调整输入框的大小。这是我的密码 <!DOCTYPE html> <html> <body> <h1> Text Summarizer </h1> <div class="login"> <h1>Insert the text that you want to summarize in the box below</h1> <form act

我是HTML新手,我正在尝试调整输入框的大小。这是我的密码

<!DOCTYPE html>
<html>
<body>

<h1> Text Summarizer </h1>
<div class="login">
<h1>Insert the text that you want to summarize in the box below</h1>

  <form action="{{url_for('summary')}}"method="post">
    <input type="text" name="input" placeholder="type here" required="required"> 
    <br><br>
    <input type="submit",value="summary">
  </form> 
  <br>
  <br>
  {{data}}
  </div>

文本摘要器
在下面的框中插入要汇总的文本




{{data}}
这是我试过的

<!DOCTYPE html>
<html>
<body>

<h1> Text Summarizer </h1>
<div class="login">
<h1>Insert the text that you want to summarize in the box below</h1>

  <form action="{{url_for('summary')}}"method="post">
    <input type="text" name="input" placeholder="type here" required="required"> 
    <br><br>
   <textarea rows= "4" cols="50">
   </textarea>
   <br><br>
    <input type="submit",value="summary">
  </form> 
  <br>
  <br>
  {{data}}
  </div>

文本摘要器
在下面的框中插入要汇总的文本






{{data}}
我现在在我原来的文本框旁边有了第二个框。
任何帮助都将不胜感激。

如果您希望它成为带有“此处键入”占位符的大文本字段,请执行以下操作:


文本摘要器
在下面的框中插入要汇总的文本




{{data}}
如果希望它是一个带有“此处键入”占位符的大文本字段,请执行以下操作:


文本摘要器
在下面的框中插入要汇总的文本




{{data}}
或者如果您想要增加输入标记,请尝试以下操作:


文本摘要器
在下面的框中插入要汇总的文本




{{data}}
或者如果您想要增加输入标记,请尝试以下操作:


文本摘要器
在下面的框中插入要汇总的文本




{{data}}
你好,内森,非常感谢。似乎当用户不键入输入时,程序就会中断。有办法解决吗?嗨,内森,非常感谢。似乎当用户不键入输入时,程序就会中断。有办法解决这个问题吗?