HTML <html> 标签


示例

一个简单的 HTML 文档:

<!DOCTYPE html>
<html lang="en">
<head>
  <title>Title of the document</title>
</head>
<body>

<h1>This is a heading</h1>
<p>This is a paragraph.</p>

</body>
</html>
亲自试一试 »

定义和用法

这个<html>标签代表 HTML 文档的根。

这个<html>标签是所有其他 HTML 元素的容器(除了<!文档类型>标签)。

笔记:您应该始终包括里面的属性<html>标签,声明网页的语言。这是为了帮助搜索引擎和浏览器。


浏览器支持

Element
<html> Yes Yes Yes Yes Yes


属性

Attribute Value Description
xmlns http://www.w3.org/1999/xhtml Specifies the XML namespace attribute (If you need your content to conform to XHTML)

全局属性

这个<html>标签还支持HTML 中的全局属性


相关页面

HTML 教程:HTML简介

HTML DOM 参考:HTML对象


默认 CSS 设置

大多数浏览器都会显示<html>具有以下默认值的元素:

html {
  display: block;
}

html:focus {
  outline: none;
}