搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

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; }