移动文档类型定义

发布于 2024-12-07 12:44:30 字数 506 浏览 1 评论 0原文

移动网站无法正确显示。即使我有正确的 DTD,我也必须放大才能正确查看我的网站:

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.2//EN" 
"http://www.wapforum.org/DTD/xhtml-mobile12.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>MySite Mobile</title>
<link rel="stylesheet" type="text/css" href="mobile.css"/>
</head>
<body>
<!-- content -->
</body>
</html>

我有正确的 DTD 吗?

Mobile site is not showing correctly. I have to zoom in to view my site correctly even if I have the correct DTD:

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.2//EN" 
"http://www.wapforum.org/DTD/xhtml-mobile12.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>MySite Mobile</title>
<link rel="stylesheet" type="text/css" href="mobile.css"/>
</head>
<body>
<!-- content -->
</body>
</html>

Do I have the correct DTD?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

小耗子 2024-12-14 12:44:30

您缺少视口元标记。

<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">

查看此链接https://developer.mozilla.org/en/Mobile/Viewport_meta_tag

You are missing the viewport meta tag.

<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">

view this link https://developer.mozilla.org/en/Mobile/Viewport_meta_tag

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