0

这是我的测试页面的完整 html

基本上就是下面这个。当我在我的 android 手机 (v4.1) 上浏览它时,它的宽度很大,阅读起来非常烦人,因为我必须左右滚动。字体也很小。手机的分辨率为720x1280。我使用的是默认浏览器。在 Firefox 上它读起来很好(没有滚动)。

<!DOCTYPE html> 
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
    <title>Test</title>
</head>
<body>
<p>lots of Lorem ipsum dolor sit amet</p>
</body>
</html>
4

1 回答 1

1

尝试添加视口meta标签:

<meta name="viewport" content="width=device-width, height=device-height;" />

本质上,它的作用是将页面的宽度和高度设置为设备的宽度和高度。

于 2013-09-14T20:45:14.487 回答