为什么我们使用 <html>标记虽然我的网站在没有 <html> 的情况下运行完美标签

why we use lt;htmlgt; tag although my website runs perfect without lt;htmlgt; tag(为什么我们使用 lt;htmlgt;标记虽然我的网站在没有 lt;htmlgt; 的情况下运行完美标签)
本文介绍了为什么我们使用 <html>标记虽然我的网站在没有 <html> 的情况下运行完美标签的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要从网页的开头知道 <html> 标签的用途,尽管网站在没有这些 <html> 的情况下运行完美</html> 标签.

I need to know what is the use of <html> tag from the beginning of the webpage although website runs perfectly without these <html> </html> tags.

我知道 doctype 是必需的,但为什么需要这个 <html> 标签.

I knew that doctype is required but why this <html> tag is required.

推荐答案

<html> 标签不是必需的.

来自 DTD:

<!ELEMENT HTML O O (%html.content;)    -- document root element -->

两个O表示开始和结束标记(分别)是可选的.

The two Os indicate that the start and end tags (respectively) are optional.

另一方面,元素是必需的(但语言的设计是为了让浏览器可以暗示它).

The element, on the other hand, is required (but the language is designed so that browsers can imply it).

由于 DOM 由一棵节点树组成,因此您必须有一个节点(根元素)才能挂起其他所有内容,这就是 html 元素.

Since a DOM consists of a tree of nodes, you have to have one node (the root element) for everything else to hang from, and that is the html element.

这也是一个非常有用的地方,可以粘贴将应用于整个文档的 lang 属性.

It is also a really useful place to stick a lang attribute that will apply to the entire document.

这篇关于为什么我们使用 &lt;html&gt;标记虽然我的网站在没有 &lt;html&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之前,我应该考虑什么?)