Skip to content

Instantly share code, notes, and snippets.

@nerdyrasa
Last active February 6, 2017 14:58
Show Gist options
  • Select an option

  • Save nerdyrasa/dec62218d8b4c0c3517bebbfb1f76ec4 to your computer and use it in GitHub Desktop.

Select an option

Save nerdyrasa/dec62218d8b4c0c3517bebbfb1f76ec4 to your computer and use it in GitHub Desktop.
<!--
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