XHTML可以嵌套更多的XHTML吗?

发布于 2024-08-31 20:51:25 字数 653 浏览 4 评论 0原文

将 SVG 文档嵌套在 XHTML 文档中是合法的;但是以同样的方式将 XHTML 文档嵌套在其他 XHTML 文档中是否合法?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>Sup</title>
</head>
<body>
    <h1>Hello World!</h1>
    <html xmlns="http://www.w3.org/1999/xhtml">
        <head>
            <title>Nested document</title>
        </head>
        <body>
            <p>This is a sample</p>
        </body>
    </html>
</body>
</html>

It's legal to nest SVG documents inside XHTML documents; but is it legal to nest XHTML documents inside other XHTML documents in the same fashion?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>Sup</title>
</head>
<body>
    <h1>Hello World!</h1>
    <html xmlns="http://www.w3.org/1999/xhtml">
        <head>
            <title>Nested document</title>
        </head>
        <body>
            <p>This is a sample</p>
        </body>
    </html>
</body>
</html>

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

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

发布评论

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

评论(2

触ぅ动初心 2024-09-07 20:51:25

不可以,html 元素只允许作为文档的根元素。

No, the html element is only allowed as root element of the document.

等待圉鍢 2024-09-07 20:51:25

您可以使用(尽管不推荐并且应该避免)

You can, using <iframe> (though not recommended and should be avoided).

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