<input type="text"> 不允许调整大小

<input type="text"> does not allow resizing

我不明白为什么我的输入不允许我调整它的大小。

<input type="text">

Example of the problem

我只想在我的 biginput 上调整大小 class。

那是因为 <input type="text"> 是单行的。

您需要为此使用 <textarea></textarea>

<input type="text" placeholder="I can't be resized"></input>
<textarea>I can be resized</textarea>

为了在 Google 表单中执行此操作,请在选择答案时使用选项 'Paragraph Text' 而不是 'Text'。

你需要文本区域:-

<textarea name="entry.585452596" type="text" class="biginput"></textarea>