Windows 10 reached EOS (end of support) on October 14, 2025. For more information, see this article.

Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

disable Textarea resize in firefox - not website owner

  • 1 reply
  • 1 has this problem
  • 40 views
  • Last reply by cor-el

How do I stop Firefox from resizing Textarea? I'm not the website owner and deal with a lot of websites with these form so editing the HTML is not an option.

Is there a setting in about:config or an add-on to disable this for some/all websites?

How do I stop Firefox from resizing Textarea? I'm not the website owner and deal with a lot of websites with these form so editing the HTML is not an option. Is there a setting in about:config or an add-on to disable this for some/all websites?

Chosen solution

See:

Add code to the userContent.css file.

The customization files userChrome.css (interface) and userContent.css (websites) are located in the chrome folder in the user profile folder.


textarea.example {  
 resize: none; /* disables resizability */  
} 

@-moz-document domain(support.mozilla.org) {
 textarea.example {  
  resize: none; /* disables resizability */  
 }
} 
Read this answer in context 👍 2

All Replies (1)

Chosen Solution

See:

Add code to the userContent.css file.

The customization files userChrome.css (interface) and userContent.css (websites) are located in the chrome folder in the user profile folder.


textarea.example {  
 resize: none; /* disables resizability */  
} 

@-moz-document domain(support.mozilla.org) {
 textarea.example {  
  resize: none; /* disables resizability */  
 }
}