A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/html/html-textarea-rows-attribute/ below:

HTML | <textarea> rows Attribute

HTML | <textarea> rows Attribute

Last Updated : 22 Jul, 2022

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: 

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:



RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4