Html viewport in iphone

kindly check this site on iPhone or iTouch:

http://www.imageworkz.asia/sixsenses

As you can see, the website looks "half".

I am currently using this meta view:

<meta name="viewport" content="width=device-width;initial-scale=0.5, maximum-scale=1.0">

This does not seem to be a problem. I absolutely do not know what I should do to fix this problem. Any ideas?

+3
source share
2 answers

Try this instead.

<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
+5
source

It will help

<meta name="apple-mobile-web-app-capable" content="yes" />

0
source

All Articles