Set 100% default scaling to display safari on iOS

My webpage is slightly larger than the resolution of the iPad, so opening it in the iPad Safari window, it scrolls horizontally. When I catch the view, the website looks perfect. Can I, by installing some type tags viewportor some others, get a page that will be fully displayed immediately after loading it?

+5
source share
2 answers

In this way:

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

Documentation: http://developer.apple.com/library/ios/#DOCUMENTATION/AppleApplications/Reference/SafariWebContent/UsingtheViewport/UsingtheViewport.html

+12
source

, , 1 ,

<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0">
+8

All Articles