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

时间:2016-12-13 13:41:02

标签: css html5

我想要从上到下写下这篇文章。

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

enter image description here

2 个答案:

答案 0 :(得分:2)

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

这是一个例子:

&#13;
&#13;
<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>
&#13;
&#13;
&#13;

答案 1 :(得分:0)

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