---
title: "How do I disable the resizable property of a textarea?"  
description: "How do I disable the resizable property of a textarea?"  
author: "Revati S Misra"  
published: 2023-04-24  
updated: 2023-04-25  
canonical: https://www.mindstick.com/forum/157987/how-do-i-disable-the-resizable-property-of-a-textarea  
category: "html"  
tags: ["html", "html input", "css"]  
reading_time: 1 minute  

---

# How do I disable the resizable property of a textarea?

How do I [disable the resizable property of a textarea](https://www.mindstick.com/forum/159394/how-to-disable-the-resizable-property-of-a-textarea)?

## Replies

### Reply by Aryan Kumar

To [disable](https://www.mindstick.com/forum/12901/how-to-disable-enable-input-box-in-aspx-with-value-from-sql) the resizable [property](https://www.mindstick.com/blog/205/property-notification-in-c-sharp) of a [textarea](https://www.mindstick.com/forum/155821/how-we-will-generate-textarea-control-using-htmlhelper-in-razor-view), you can use the CSS `resize` property and set it to `none`. Here's an example:

```css
textarea {
 resize: none;
}
```

In this example, we're targeting all `textarea` elements on the page and setting the `resize` property to `none`, which will disable the ability to resize the textarea with the mouse.

Note that this may not work in all browsers, as the resizable property is ultimately up to the browser to implement. Some browsers may ignore the `resize: none` property, while others may provide alternative ways to resize the textarea.


---

Original Source: https://www.mindstick.com/forum/157987/how-do-i-disable-the-resizable-property-of-a-textarea

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
