Last active
April 16, 2016 01:54
-
-
Save plugnburn/58d2215df67da2c6c0a6 to your computer and use it in GitHub Desktop.
A reference set of mobile meta tags for quick pasting
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- general features --> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <meta name="format-detection" content="telephone=no"> <!-- iOS & Android --> | |
| <meta name="format-detection" content="address=no"> <!-- iOS & Android --> | |
| <!-- iOS only features --> | |
| <meta name="apple-mobile-web-app-capable" content="yes"> | |
| <meta name="apple-mobile-web-app-title" content="Short name"> | |
| <meta name="apple-mobile-web-app-status-bar-style" content="default"> <!-- possible values: default, black, black-translucent --> | |
| <!-- Android only features --> | |
| <meta name="viewport" content="target-densitydpi=device-dpi"> <!-- Android only before 4.4, possible values: device-dpi, high-dpi, medium-dpi, low-dpi --> | |
| <!-- Android Chrome and Android 4.4+ only features --> | |
| <meta name="mobile-web-app-capable" content="yes"> | |
| <meta name="application-name" content="Awesome App!"> | |
| <!-- Blackberry only features --> | |
| <meta http-equiv="x-rim-auto-match" content="none"> | |
| <meta name="HandheldFriendly" content="True"> | |
| <!-- old windows mobile only features --> | |
| <meta http-equiv="cleartype" content="on"> | |
| <meta name="MobileOptimized" content="240"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment