Use
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
in the <head> section of your document to prevent the website from scaling on mobile devices. The important thing here is user-scalable=no , which does the trick.
Edit
I did some more research, and you also got the opportunity to add:
<meta name="MobileOptimized" content="640">
So far, content="640" is the width you want to set and behaves like <meta name="viewport" content="width=640,user-scalable=no"> .
Read more about here and here .
source share