Open In App

How to disable resizable property of textarea using CSS?

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:




<!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:



Article Tags :