如何通过从左上角开始文本对齐来增加html文本框输入的高度?

时间:2022-08-22 12:16:25

I want to this passege written from up to down.

我想要从最开始写下来的这篇文章。

<input id="txt1" type="text" style="width: 50%; height: 150px;">

如何通过从左上角开始文本对齐来增加html文本框输入的高度?

2 个解决方案

#1


2  

You can use textarea instead of input. you can find more information and examples here: http://www.w3schools.com/tags/tag_textarea.asp

您可以使用textarea而不是输入。您可以在此处找到更多信息和示例:http://www.w3schools.com/tags/tag_textarea.asp

here is an example:

这是一个例子:

<textarea rows="5" cols="50">
    Hello World!Hello World!Hello World!Hello World!Hello World!Hello World!Hello World!Hello World!Hello World!Hello World!Hello World!
</textarea>

#2


0  

Have you considered using a textarea element instead of a textbox?

您是否考虑过使用textarea元素而不是文本框?

#1


2  

You can use textarea instead of input. you can find more information and examples here: http://www.w3schools.com/tags/tag_textarea.asp

您可以使用textarea而不是输入。您可以在此处找到更多信息和示例:http://www.w3schools.com/tags/tag_textarea.asp

here is an example:

这是一个例子:

<textarea rows="5" cols="50">
    Hello World!Hello World!Hello World!Hello World!Hello World!Hello World!Hello World!Hello World!Hello World!Hello World!Hello World!
</textarea>

#2


0  

Have you considered using a textarea element instead of a textbox?

您是否考虑过使用textarea元素而不是文本框?