Rechercher dans l’assistance

Évitez les escroqueries à l’assistance. Nous ne vous demanderons jamais d’appeler ou d’envoyer un SMS à un numéro de téléphone ou de partager des informations personnelles. Veuillez signaler toute activité suspecte en utilisant l’option « Signaler un abus ».

En savoir plus

disable Textarea resize in firefox - not website owner

  • 1 réponse
  • 1 a ce problème
  • 53 vues
  • Dernière réponse par 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?

Solution choisie

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 */  
 }
} 
Lire cette réponse dans son contexte 👍 2

Toutes les réponses (1)

more options

Solution choisie

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