jquery移动默认字体大小

Phi*_*enn 8 jquery-mobile

我有以下代码:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>jQuery Mobile</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/latest/jquery.mobile.css" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.js"></script>
<script src="http://code.jquery.com/mobile/latest/jquery.mobile.js"></script>
</head>
<body>

<div data-role="page" id="myPage">

    <div data-role="header">
        <h1>Header</h1>
    </div>
    <div data-role="content">Hello World!</div>
    <div data-role="footer">
        <h4>Footer</h4>
    </div>

</div>
<script src="/jQueryMatrix/Inc/js/PRINT.js"></script>
</body>
</html>
Run Code Online (Sandbox Code Playgroud)

但我的字体大小看起来很小.这是真的,我可以放大,但默认字体大小不应该清晰吗?

Phi*_*ord 12

我将研究在元标记中设置视点:

<meta name="viewport" content="width=device-width, initial-scale=1">
Run Code Online (Sandbox Code Playgroud)

更多信息:

  • 我是StackOverflow,蘑菇云傻瓜. (3认同)