I am using device metric overrides in Chrome to test a responsive website with lower resolutions (in this case 320x480).
The meta tag of my view does not affect the page in this case. The logo will seem tiny and I donβt read at all. More or less, I would say that I see everything on a scale of 0.5.
Here is the chapter of my HTML:
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <link rel="stylesheet" href="css/main.css" /> <link rel="stylesheet" href="css/mediaqueries.css" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" / > <script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/modernizr/modernizr-2.0.6-development-only.js"></script> <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script> <script type="text/javascript" src="js/main.js"></script>
It works on other people's sites .... I don't know what I'm doing wrong ...
source share