Last active
December 16, 2015 22:20
-
-
Save cacheleocode/5506612 to your computer and use it in GitHub Desktop.
stop the defaults!
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
| <!-- different methods --> | |
| <meta name="viewport" content="user-scalable=0"/> | |
| <meta name="viewport" content="width=device-width; initial-scale=.5; maximum-scale=1.0;" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> | |
| <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" /> | |
| <meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0" /> | |
| <!-- Apple method --> | |
| <meta name="viewport" content="width=device-width, user-scalable=no" /> | |
| <!-- working method? --> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> | |
| <!-- Remove automatic highlighting of telephone numbers --> | |
| <meta name="format-detection" content="telephone=no" /> | |
| <!-- for devices that can't use viewport --> | |
| <meta name="HandheldFriendly" content="true" /> | |
| <!-- add to body or container --> | |
| <div onselectstart="return false;"></div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment