Skip to content

Instantly share code, notes, and snippets.

@theaccordance
Created May 13, 2013 16:41
Show Gist options
  • Select an option

  • Save theaccordance/5569676 to your computer and use it in GitHub Desktop.

Select an option

Save theaccordance/5569676 to your computer and use it in GitHub Desktop.
Meta tags to enhance rendering of sites/webapps on iOS devices
<!-- Retrieved from http://developer.apple.com/library/safari/#documentation/AppleApplications/Reference/SafariHTMLRef/Articles/MetaTags.html -->
<!-- Sets whether a web application runs in full-screen mode -->
<meta name="apple-mobile-web-app-capable" content="yes">
<!-- Sets the style of the status bar for a web application. -->
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<!-- Enables or disables automatic detection of possible phone numbers in a webpage in Safari on iOS. -->
<meta name="format-detection" content="telephone=no">
<!-- Changes the logical window size used when displaying a page on iOS. -->
<meta name = "viewport" content = "initial-scale = 1.0, user-scalable = no">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment