如何让我的移动网站自动调整屏幕分辨率?
我正在开发一个移动网站,但是当我在手机上查看该网站时,该网站会自动缩小为非常小的字体,并且用户必须放大才能阅读文本。
如何让它在用户每次访问网站时自动以正确的尺寸显示?
这是我的 CSS:
.content {
width:auto;
height:auto;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
color:#666666;
text-align:justify;
}
和 HTML:
<div class="content"> Hello
<div id="logo"><img src="banner.png" border="0"></div>
</div>
尽管有我的代码,但在 Android 和 iPhone 设备上,文本看起来非常小。我该如何解决这个问题?
I'm working on a mobile website, but when I view the site on a phone, the website is automatically shrunk to a very small font and the user has to zoom in to read the text.
How do I make it automatically display at the right size each time a user visits the site?
Here's my CSS:
.content {
width:auto;
height:auto;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
color:#666666;
text-align:justify;
}
And my HTML:
<div class="content"> Hello
<div id="logo"><img src="banner.png" border="0"></div>
</div>
Despite my code, on Android and iPhone devices, the text appears very tiny. How do I fix this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试将其添加到您的
中:
用户可扩展是可选的。当它设置为 false 时,它会阻止用户使用浏览器的缩放功能。
Try adding this to your
<head>
:user-scalable is optional. When it is set to false it prevents the user from using the browser's zoom.