如何让我的移动网站自动调整屏幕分辨率?

发布于 2024-09-28 09:36:24 字数 497 浏览 2 评论 0原文

我正在开发一个移动网站,但是当我在手机上查看该网站时,该网站会自动缩小为非常小的字体,并且用户必须放大才能阅读文本。

如何让它在用户每次访问网站时自动以正确的尺寸显示?

这是我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

残龙傲雪 2024-10-05 09:36:24

尝试将其添加到您的 中:

<meta name="viewport" content="width=device-width, user-scalable=yes">

用户可扩展是可选的。当它设置为 false 时,它​​会阻止用户使用浏览器的缩放功能。

Try adding this to your <head>:

<meta name="viewport" content="width=device-width, user-scalable=yes">

user-scalable is optional. When it is set to false it prevents the user from using the browser's zoom.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文