ابحث في الدعم

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 (رد واحد)
  • 1 has this problem
  • 100 views
  • آخر ردّ كتبه cor-el

more options

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?

الحل المُختار

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)

more options

الحل المُختار

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 */  
 }
}