main
用途
<main>元素定义文档的主要内容。并且内容对于文档来说应当是唯一的。它不应包含在文档中重复出现的内容,比如侧栏、导航栏、版权信息、站点标志或搜索表单。
注意:在一个文档中,不能出现一个以上的 <main> 元素。<main> 元素不能是以下元素的后代:<article>、<aside>、<footer>、<header> 或 <nav>。
例子
代码
<main> <h1>Web Browsers</h1> <p>Google Chrome、Firefox 以及 Internet Explorer 是目前最流行的浏览器。</p> <article> <h1>Google Chrome</h1> <p>Google Chrome 是由 Google 开发的一款免费的开源 web 浏览器,于 2008 年发布。</p> </article> <article> <h1>Internet Explorer</h1> <p>Internet Explorer 由微软开发的一款免费的 web 浏览器,发布于 1995 年。</p> </article> <article> <h1>Mozilla Firefox</h1> <p>Firefox 是一款来自 Mozilla 的免费开源 web 浏览器,发布于 2004 年。</p> </article> </main>
执行结果
Google Chrome、Firefox 以及 Internet Explorer 是目前最流行的浏览器。 Google Chrome 是由 Google 开发的一款免费的开源 web 浏览器,于 2008 年发布。 Internet Explorer 由微软开发的一款免费的 web 浏览器,发布于 1995 年。 Firefox 是一款来自 Mozilla 的免费开源 web 浏览器,发布于 2004 年。Web Browsers
Google Chrome
Internet Explorer
Mozilla Firefox
属性
标准属性
事件属性
变更点
<main>标签是HTML5中的新标签。
参考
外部链接