除了 doctype 和 html 标签之外,html head 和 body 之外还可以有哪些其他标记?

发布于 2024-11-16 11:00:07 字数 69 浏览 0 评论 0原文

对于 HTML 文档,几乎所有内容都位于 html 头部和正文内。 html head 和 body 之外可以包含哪些内容?

With an HTML document almost everything is inside the html head and body. What are all the things that can be outside of the html head and body?

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

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

发布评论

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

评论(3

笑忘罢 2024-11-23 11:00:07

HTML 4.01 规范 指定了这些HTML 文档由三部分组成:

  • 包含 HTML 版本信息的行,
  • 声明性标头部分(由 HEAD 元素分隔),
  • 正文,其中包含文档的实际内容。身体
    可以通过 BODY 元素实现
    FRAMESET元素。

HTML 5 编辑器规范 指定 html 作为根元素

head 元素后跟 body
元素。

并且frameset包含在已过时功能列表中

HTML 4.01 Spec specifies these three parts an HTML document is comprised of:

  • a line containing HTML version information,
  • a declarative header section (delimited by the HEAD element),
  • a body, which contains the document's actual content. The body
    may be implemented by the BODY element
    or the FRAMESET element.

HTML 5 Editor Spec specifies html as the root element with

A head element followed by a body
element.

and frameset is included in the Obsolete feature list

溺ぐ爱和你が 2024-11-23 11:00:07

只有注释和空格字符。

文件必须包含以下内容
以下部分按给定顺序排列:

  1. 可选,单个 U+FEFF BYTE ORDER
    标记(BOM)字符。
  2. 任意数量
    注释和空格字符。
  3. A
    文档类型。
  4. 任意数量的评论和
    空格字符。
  5. 根元素,位于
    html 元素的形式。
  6. 任意
    评论数量和空间
    字符。

来源:http://www.whatwg.org /specs/web-apps/current-work/multipage/syntax.html#writing

Only comments and space characters.

Documents must consist of the
following parts, in the given order:

  1. Optionally, a single U+FEFF BYTE ORDER
    MARK (BOM) character.
  2. Any number of
    comments and space characters.
  3. A
    DOCTYPE.
  4. Any number of comments and
    space characters.
  5. The root element, in
    the form of an html element.
  6. Any
    number of comments and space
    characters.

Source: http://www.whatwg.org/specs/web-apps/current-work/multipage/syntax.html#writing

泪是无色的血 2024-11-23 11:00:07

应该是这样。您将 html 作为父级,将 head 和 body 作为子级。

That should be it. You have html as parent, and head and body as children.

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