HTML5提供的aside
元素标签用来表示当前页面或文章的附属信息部分,能够包含与当前页面或主要内容相关的引用、侧边栏、广告、nav元素组,以及其余相似的有别与主要内容的部分。html
根据目前的规范,aside
元素有两种使用方法:ide
被包含在article
中做为主要内容的附属信息部分,其中的内容能够是与当前文章有关的引用、词汇列表等。工具
在article
以外使用,做为页面或站点全局的附属信息部分;最典型的形式是侧边栏(sidebar),其中的内容能够是友情连接、附属导航或广告单元等。学习
下面的代码示例综合了以上两种使用方法:this
<body> <header> <h1>My Blog</h1> </header> <article> <h1>My Blog Post</h1> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p> <aside> <!-- Since this aside is contained within an article, a parser should understand that the content of this aside is directly related to the article itself. --> <h1>Glossary</h1> <dl> <dt>Lorem</dt> <dd>ipsum dolor sit amet</dd> </dl> </aside> </article> <aside> <!-- This aside is outside of the article. Its content is related to the page, but not as closely related to the above article --> <h2>Blogroll</h2> <ul> <li><a href="#">My Friend</a></li> <li><a href="#">My Other Friend</a></li> <li><a href="#">My Best Friend</a></li> </ul> </aside> </body>
HTML5学习笔记简明版(3):新元素之hgroup,header,footer,address,nav搜索引擎
aside也跟侧边栏不要紧,它表示的是工具性的东西,跟核心内容关系不大。(言外之意多是read it later工具或者搜索引擎也许能够忽略)code