Latest web development tutorials

HTML textarea rows property

HTML textarea tag Reference Manual HTML <textarea> tag

Examples

With the specified height and width of the text area:

<textarea rows="4" cols="50">
在 w3big.com 您将学习如何制作一个网站。我们提供了所有 Web 开发免费教程。
</textarea>

try it"

Browser Support

Internet ExplorerFirefoxOperaGoogle ChromeSafari

All major browsers support rows property.


Definition and Usage

rows attribute specifies the visible height of the text area, in order to count the number of rows.

Note: textarea size of CSS can also set the height and width attributes.


Differences between HTML 4.01 and HTML5

no.


grammar

<textarea rows="number">

Property Value

描述
number 规定文本区域的高度(以行数计)。默认值是 2。


HTML textarea tag Reference Manual HTML <textarea> tag