Ce site disposera de fonctionnalités limitées pendant que nous effectuons des opérations de maintenance en vue de vous proposer un meilleur service. Si un article ne règle pas votre problème et que vous souhaitez poser une question, notre communauté d’assistance est prête à vous répondre via @FirefoxSupport sur Twitter, et /r/firefox sur Reddit.

Rechercher dans l’assistance

Évitez les escroqueries à l’assistance. Nous ne vous demanderons jamais d’appeler ou d’envoyer un SMS à un numéro de téléphone ou de partager des informations personnelles. Veuillez signaler toute activité suspecte en utilisant l’option « Signaler un abus ».

En savoir plus

Are there some Javascript or Jquery to adjust layout.css.devPixelsPerPx?

more options

I am using Firefox 44.0.2. Everything appearing in this browser is too big comparing to Chrome and Internet Explorer. I learn layout.css.devPixelsPerPx in Firefox controls the above matter. I can manually adjust Firefox's resolution by entering 1 in css.devPixelsPerPx (the default is -1) and then everything looks smaller in Firefox browser.

I wonder if are there some Javascript or Jquery code to adjust layout.css.devPixelsPerPx? so that when end users use the application, the application will automatically adjust Firefox's dimension. Please give me a hand. Thanks

I am using Firefox 44.0.2. Everything appearing in this browser is too big comparing to Chrome and Internet Explorer. I learn layout.css.devPixelsPerPx in Firefox controls the above matter. I can manually adjust Firefox's resolution by entering 1 in css.devPixelsPerPx (the default is -1) and then everything looks smaller in Firefox browser. I wonder if are there some Javascript or Jquery code to adjust layout.css.devPixelsPerPx? so that when end users use the application, the application will automatically adjust Firefox's dimension. Please give me a hand. Thanks

Toutes les réponses (2)

more options

No, definitely not. Web pages cannot change Firefox preferences.

But pages can detect some parameters related to the user's resolution. For example, what if you knew that Firefox users see text 25% larger than the standard browser default of 96ppi? You can get that from window.devicePixelRatio (it might only exist in Firefox).

I have a couple demo pages online that you could play with to get some ideas, but neither is a complete solution:

more options

Actually, the window.devicePixelRatio is not strictly speaking an indication of the default zoom level, since the user can modify it using the zoom feature. So you may want to be careful "undoing" the zoom in case that's actually the user's preference.