在 HTML5 中,<header>和<页脚>标签出现在 <body> 之外.标签?

In HTML5, can the lt;headergt; and lt;footergt; tags appear outside of the lt;bodygt; tag?(在 HTML5 中,lt;headergt;和lt;页脚gt;标签出现在 lt;bodygt; 之外.标签?)
本文介绍了在 HTML5 中,<header>和<页脚>标签出现在 <body> 之外.标签?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我目前是这样使用上面的标签的(经典的标签顺序):

I'm currently using the above tags in this way (classic tag order):

<html>
  <head>...</head>
  <body>
    <header>...</header>
    <section>...</section>
    <footer>...</footer>
  </body>
</html>

标签的使用和规范在以前的 HTML (4.x) 版本中非常严格,而 HTML5 并不真正需要 <head> 甚至 <body>标签.

Tag usage and specifications were very rigid in previous versions of HTML (4.x), while HTML5 doesn't really need <head> and even <body> tags.

所以我会使用以下结构,恕我直言,它比前一个更语义化.

So I would use the following structure, which IMHO is much more semantic than the previous one.

<html>
  <header>...</header>     <!-- put header and footer outside the body tag -->
  <body>
    <section>...</section>
    <section>...</section>
    <section>...</section>
  </body>
  <footer>...</footer>
</html>

你怎么看?

推荐答案

嗯,<head>标签与<header>标签无关.head 中包含所有元数据和内容,而 header 只是一个布局组件.
布局进入body.所以我不同意你的观点.

Well, the <head> tag has nothing to do with the <header> tag. In the head comes all the metadata and stuff, while the header is just a layout component.
And layout comes into body. So I disagree with you.

这篇关于在 HTML5 中,&lt;header&gt;和&lt;页脚&gt;标签出现在 &lt;body&gt; 之外.标签?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

how to remove this error quot;Response must contain an array at quot; . quot;.quot; while making dropdown(如何删除此错误quot;响应必须在quot;处包含数组。创建下拉菜单时(Q;))
Why is it necessary to use `document.createElementNS` when adding `svg` tags to an HTML document via JS?(为什么在通过JS为一个HTML文档添加`svg`标签时,需要使用`Document.createElementNS`?)
wkhtmltopdf print-media-type uses @media print ONLY and ignores the rest(Wkhtmltopdf print-media-type仅使用@media print,而忽略其余内容)
price depend on selection of radio input(价格取决于无线电输入的选择)
calculate price depend on selection without button(根据没有按钮的选择计算价格)
What should I consider before minifying HTML?(在缩小HTML之前,我应该考虑什么?)