最新的Web開發教程
 

HTML <textarea> rows Attribute

<HTML <textarea>標籤

與指定的高度和寬度的文本區域:

<textarea rows="4" cols="50">
At w3ii.com you will learn how to make a website. We offer free tutorials in all web development technologies.
</textarea>
試一試»

定義和用法

rows屬性指定的文本區域的可見高度,以線條。

注意:一個textarea的大小也可以通過CSS的高度和寬度屬性指定。


瀏覽器支持

屬性
rows

HTML 4.01和HTML5之間的差異

沒有。


句法

<textarea rows="number">

屬性值

描述
number 指定文本區域的高度(在線)。 默認值是2

<HTML <textarea>標籤