We're calling on all EU-based Mozillians with iOS or iPadOS devices to help us monitor Apple’s new browser choice screens. Join the effort to hold Big Tech to account!

Hilfe durchsuchen

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

Is there an add-on to replace textarea resizer in Version 24.0?

  • 4 Antworten
  • 4 haben dieses Problem
  • 1 Aufruf
  • Letzte Antwort von cor-el

more options

There used to be an Icon (3 dots in a triangle I believe) in the lower right hand corner of text boxes that allowed me to enlarge the text box for easier viewing of all the text. In searching through available add-ons, the ones that appear to do this function show up as not being compatible with version24.0. Is there any way to get this feature back?

There used to be an Icon (3 dots in a triangle I believe) in the lower right hand corner of text boxes that allowed me to enlarge the text box for easier viewing of all the text. In searching through available add-ons, the ones that appear to do this function show up as not being compatible with version24.0. Is there any way to get this feature back?

Alle Antworten (4)

more options

IIRC, that type of extension hasn't been needed since before Firefox 4 came out. I see that lower-right corner triangle of dots in the Post a Reply where I am typing right now.

And this version - https://addons.mozilla.org/en-US/firefox/addon/resizeable-textarea/ - that I used to use years ago, specifically says - Firefox 4 with build in resizing is out!

more options

Note that is is possible that a website disables this feature via CSS code (textarea{resize:none})

more options

I really liked it when the resize "grip" appeared a couple of Firefox versions ago.

However, more and more web sites seem to set the CSS style property "resize" to "none" in order to remove the resize grip.

I don't like this idea. I want to be able to resize a text input area whenever I may see fit.

How can I globally disable the "resize" CSS property and get the resize grip back?

more options

You can right-click in the text area and open the Inspector (Firefox/Tools > Web Developer;Ctrl+Shift+I).
Disable the resize:none rule.


Add code to the userContent.css file.

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

textarea { resize: both !important; }