Last active
February 6, 2017 14:58
-
-
Save nerdyrasa/dec62218d8b4c0c3517bebbfb1f76ec4 to your computer and use it in GitHub Desktop.
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
| <!-- | |
| Responsive Web Design Basics | |
| https://developers.google.com/web/fundamentals/design-and-ui/responsive/ | |
| Use the meta viewport tag to control the width and scaling of the browser's viewport. | |
| Include width=device-width to match the screen's width in device-independent pixels. | |
| Include initial-scale=1 to establish a 1:1 relationship between CSS pixels and device-independent pixels. | |
| Ensure your page is accessible by not disabling user scaling. | |
| --> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment