Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

Αυτός ο ιστότοπος θα έχει περιορισμένη λειτουργικότητα, όσο εκτελούμε εργασίες συντήρησης για να βελτιώσουμε την εμπειρία σας. Αν ένα άρθρο δεν επιλύει το ζήτημά σας και θέλετε να κάνετε μια ερώτηση, η κοινότητα υποστήριξής μας είναι έτοιμη να σας βοηθήσει στο Twitter (@FirefoxSupport) και στο Reddit (/r/firefox).

Αναζήτηση στην υποστήριξη

Προσοχή στις απάτες! Δεν θα σας ζητήσουμε ποτέ να καλέσετε ή να στείλετε μήνυμα σε κάποιον αριθμό τηλεφώνου ή να μοιραστείτε προσωπικά δεδομένα. Αναφέρετε τυχόν ύποπτη δραστηριότητα μέσω της επιλογής «Αναφορά κατάχρησης».

Μάθετε περισσότερα

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

  • 4 απαντήσεις
  • 4 έχουν αυτό το πρόβλημα
  • 1 προβολή
  • Τελευταία απάντηση από 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?

Όλες οι απαντήσεις (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; }