Open In App

How to disable resizable property of textarea using CSS?

Last Updated : 04 Aug, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

This resizable property is used to set the resizable area of elements. It is mostly used with textarea and div elements. To disable resizable property of an element use resize to none. It is the default value.

Syntax

resize: none;

Example:

html




<!DOCTYPE html>
<html>
 
<head>
    <title>Disable resize property</title>
    <style>
        h1 {
            color:green;
        }
        body {
            text-align:center;
        }
        textarea {
            overflow:auto;
            resize:none;
            width:200px;
            height:100px;
        }
    </style>
</head>
 
<body>
    <h1>GeeksforGeeks</h1>
    <h2>Disable resize property</h2>
    <textarea>
        GeeksForGeeks: A computer science portal for
        geeks. It is a good platform to learn programming.
    </textarea>
</body>
 
</html>


Output:


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads