חיפוש בתמיכה

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Broswer window width cannot be resized to go under 450px anymore.

  • 1 תגובה
  • 1 has this problem
  • 5 views
  • תגובה אחרונה מאת Wesley Branton

more options

The newer versions of Firefox do not allow you to resize your browser window width to go under 450px. Is there any setting I can change this limitation?

The newer versions of Firefox do not allow you to resize your browser window width to go under 450px. Is there any setting I can change this limitation?

כל התגובות (1)

more options

You need to override Firefox's default minimum width value with a minimum width of 0 pixels. This can be done by adding the following CSS code to a userChrome.css file:

:root {
    min-width: 0 !important;
}

If you do not already have a userChrome.css file setup or are unfamiliar with how to use userChrome.css modifications, please see How to Create a userChrome.css File.

Hope this helps.