Chromeでデバイスメトリックオーバーライドを使用して、レスポンシブWebサイトの解像度(この場合は320x480)をテストしています。
この場合、ビューポートメタタグはページに影響を与えません。ロゴは小さく見えますが、私にはまったく読めません。多かれ少なかれ、私はすべてを.5スケールで見ていると思います。
これが私の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" / >
<!--[if lte IE 8]>
<style>
.wrapper {min-width: 960px; padding: 0 10px;}
.hovertext {background: #ccc;}
</style>
<![endif]-->
<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>
これは他の人のサイトでも機能します...私は何が間違っているのかわかりません...