Skip to content

Instantly share code, notes, and snippets.

@pbojinov
Created September 12, 2013 00:19
Show Gist options
  • Select an option

  • Save pbojinov/6531653 to your computer and use it in GitHub Desktop.

Select an option

Save pbojinov/6531653 to your computer and use it in GitHub Desktop.
Prevent page zoom, specifically for mobile websites once you have a responsive layout
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/>
<title>No Zoom for You</title>
</head>
<body>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment