搜索 | 用户支持

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

Learn More

Textarea resize not working with Firefox and Windows8

  • 3 个回答
  • 4 人有此问题
  • 1 次查看
  • 最后回复者为 cor-el

more options

I have current version of firefox installed. In Windows 8, my form fields that have a textarea with default settings for resize no longer show the 3 dots in lower right to resize the window. No CSS conflicts of any sort.

I have current version of firefox installed. In Windows 8, my form fields that have a textarea with default settings for resize no longer show the 3 dots in lower right to resize the window. No CSS conflicts of any sort.

所有回复 (3)

more options

Can you post a link to a publicly accessible page that doesn't require authentication (signing on)?

If that isn't possible then can you post the code that is used?

more options

I also rejoiced when the resize "grip" appeared on input textareas a couple of Firefox versions ago.

However, more and more web sites found out how to disable the resize grip by setting the CSS style property "resize" to "none". So the resize grip which I got very used to is fading into obscurity.

That's sad. I want to be able to resize a text input area whenever I may see fit.

I'd prefer if Firefox would let me globally (e.g. about:config) disable the "resize" CSS property to get the resize grip back on input textareas.

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