Open In App

HTML | <textarea> rows Attribute

Last Updated : 22 Jul, 2022
Comments
Improve
Suggest changes
Like Article
Like
Report

The HTML textarea rows Attribute is used to specify the number of visible text lines for the control i.e the number of rows to display. It also specifies the visible height of the Textarea. 

Syntax: 

<textarea rows = "value">

Attribute Values: 

  • number: It specify the height of the Textarea. Its Default value is 2.

Example: 

html
<!DOCTYPE html>
<html>

<head>
    <title>
        HTML Textarea rows Attribute
    </title>
</head>

<body>
    <center>
        <h1 style="color: green;"> 
            GeeksforGeeks 
        </h1>

        <h2> 
            HTML Textarea rows Attribute 
        </h2>

        <!-- Below textarea element has rows 
            attribute assigned to 5 -->
        <textarea rows="5" cols="23">
            This paragraph has number 
          of rows equal to 5.
        </textarea>
    </center>
</body>

</html>

Output:

  

Supported Browsers: The browsers supported by HTML textarea rows Attribute are listed below:

  • Google Chrome 1
  • Edge 12
  • Internet Explorer 6
  • Firefox 1
  • Apple Safari 4
  • Opera 12.1

Next Article

Similar Reads