Open In App
Related Articles

HTML | <textarea> rows Attribute

Improve Article
Improve
Save Article
Save
Like Article
Like

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
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 22 Jul, 2022
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials