Open In App
Related Articles

HTML | <textarea> wrap Attribute

Improve Article
Improve
Save Article
Save
Like Article
Like

The HTML textarea wrap Attribute is used to specify that in which manner the text is to be wrapped in a text area when a form is submitted.

Syntax: 

<textarea wrap="soft|hard"> 

Attribute Values: 

  • soft: It specifies that the Text present in the Textarea would not be wrapped after submitting the form. This is the default value.
  • Hard: It specifies that the Text in a Textarea is wraps when submitting the form.

Example: This Example that illustrates the use of wrap attribute in the Textarea Element. 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML Textarea wrap attribute
    </title>
</head>
 
<body style="text-align:center">
    <h1 style="color: green;">
    GeeksforGeeks
</h1>
    <h2>
    HTML Textarea wrap attribute
</h2>
 
    <!-- Assigning id to textarea. -->
    <textarea id="GFG_ID"
              rows="3"
              cols="10"
              name="Geeks"
              wrap="hard">
        This text is wrapped in the text area field.
    </textarea>
    <br>
 
    <button onclick="myGeeks()">
        Submit
    </button>
</body>
 
</html>


Output:

  

Supported Browsers:

  • Google Chrome 16
  • Edge 12
  • Firefox 4
  • Internet Explorer 6
  • Opera 12.1
  • Apple Safari 6
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