在 html 中增加文本框的大小

Increasing the size of a textbox in html

我是 HTML 的初学者。如何增加文本框的大小?我不想要 1 行文字,我想要一个实际的框。我无法使用 Javascript.

-谢谢。

对于多行文本,你应该使用textarea HTML input

<textarea rows=4></textarea>

Number of rows定义了多少行,更多细节请看,https://developer.mozilla.org/en-US/docs/Web/HTML/Element/textarea