Vorsicht vor Support-Betrug: Wir fordern Sie niemals auf, eine Telefonnummer anzurufen, eine SMS an eine Telefonnummer zu senden oder persönliche Daten preiszugeben. Bitte melden Sie verdächtige Aktivitäten über die Funktion „Missbrauch melden“.

Weitere Informationen

disable Textarea resize in firefox - not website owner

  • 1 Antwort
  • 1 hat dieses Problem
  • 67 Aufrufe
  • Letzte Antwort von 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?

Ausgewählte Lösung

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 */  
 }
} 
Diese Antwort im Kontext lesen 👍 2

Alle Antworten (1)

Ausgewählte Lösung

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