Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Phonegap + Windows Phone 8 : HTML5 viewport meta & scaling issue

I am facing an issue and looking forward to solving it. How to fix the HTML5 viewport meta & scaling issue?


1 Answer
karthikeya Boyini

Whenever you face such issue, it would mean you have not written the CSS properly.

Just add the following in CSS:

* {
   zoom:1;
   -ms-content-zooming:none;
}

For some code, even the following works:

@viewport
{
   width:320px;
}
@-ms-viewport {
   width:320px;
   zoom-user:fixed;
   max-zoom:1;
   min-zoom:1;
}
Advertisements

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.