How to stop auto-scaling of web page with high resolution dpi in ie11

With today's win8.1 update, we have a new IE11 that automatically scales websites on high-resolution monitors (in fact, it even scales 1920x1080 to 125% on a 15-inch screen).

When testing several parallax sites that I did some time ago (using scrollorama), I noticed that this scaling effect excludes my predefined scroll points on which certain animations occur.

Is there any way to stop this behavior?

I found this: http://msdn.microsoft.com/en-us/library/ie/dn265030(v=vs.85).aspx

but explicitly setting X-UA-TextLayoutMetrics to gdi or normal doesn't seem to work for me, are there any prerequisites?

+7
html css internet-explorer meta-tags internet-explorer-11
source share
2 answers

The only answer I found was to actually play with the behavior of the default browsers and adapt incompatible websites.

0
source share

For my HTML pages, I use:

 <meta name="viewport" content="width=device-width, initial-scale=1"> 

In addition to this, you can add:

 maximum-scale=1.0, minimum-scale=1.0 

inside content=" "

0
source share

All Articles