---
title: "Any way to disable Firefox 4 textarea-resizing handles, please help?"  
description: "Any way to disable Firefox 4 textarea-resizing handles, please help?"  
author: "Utpal Vishwas"  
published: 2023-07-31  
updated: 2023-08-01  
canonical: https://www.mindstick.com/forum/159398/any-way-to-disable-firefox-4-textarea-resizing-handles-please-help  
category: "html"  
tags: ["html element", "firefox"]  
reading_time: 2 minutes  

---

# Any way to disable Firefox 4 textarea-resizing handles, please help?

Any way to [disable](https://www.mindstick.com/forum/12901/how-to-disable-enable-input-box-in-aspx-with-value-from-sql) [Firefox](https://www.mindstick.com/forum/158098/why-doesn-t-my-image-color-match-the-background-color-in-firefox) 4 [textarea](https://www.mindstick.com/forum/155821/how-we-will-generate-textarea-control-using-htmlhelper-in-razor-view)-resizing handles, please help?

## Replies

### Reply by Aryan Kumar

Sure, there are a few ways to disable the textarea-resizing handles in Firefox 4.

## Using CSS

The simplest way to disable the resizing handles is to use CSS. You can add the following CSS rule to your HTML document:

CSS

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

This will prevent the user from resizing the textarea, and will also hide the resizing handles.

## Using JavaScript

You can also disable the resizing handles using JavaScript. The following JavaScript code will disable the resizing handles for all textarea elements:

JavaScript

```plaintext
document.querySelectorAll('textarea').forEach(function(textarea) {
  textarea.style.resize = 'none';
});
```

## Using the Firefox Developer Tools

You can also disable the resizing handles using the Firefox Developer Tools. To do this, open the Developer Tools, and then select the "Elements" tab. Find the textarea element that you want to disable the resizing handles for, and then right-click on it. Select the "Inspect" option from the menu that appears.

In the Inspector window, expand the "Style" section. In the "Properties" pane, find the "resize" property. Set the value of the "resize" property to "none".

This will disable the resizing handles for the selected textarea element.


---

Original Source: https://www.mindstick.com/forum/159398/any-way-to-disable-firefox-4-textarea-resizing-handles-please-help

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
