You just need to say that the iPhone does not allow the user to zoom in using the meta tag:
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;"/>
This will still allow your webpage to rotate, but not scale.
source
share