2.1.4 main元素
优质
小牛编辑
131浏览
2023-12-01
main元素代表文档的主内容区,它应当与文档直接相关,或者是文档的中心主题的扩展,并且,应当是文档中独一无二的,不会在文档中其他任何地方(如,侧边栏、导航栏、版权信息、搜索框)重复出现的内容。如:
<!-- other content -->
<main>
<h1>Skateboards</h1>
<p>The skateboard is the way cool kids get around</p>
<article>
<h2>Longboards</h2>
<p>Longboards are a type of skateboard ...</p>
<p>... </p>
<p>... </p>
</article>
<article>
<h2>Electric Skateboards</h2>
<p>These no longer require ...</p>
<p>... </p>
<p>... </p>
</article>
</main>
<!-- other content -->
一个页面中只能有一个main元素,不能将 main元素放在 article、aside、header、footer、nav 元素的里面,即main元素的级别不能低于这些元素。