XML/HTML Code復制內(nèi)容到剪貼板
- <article>
- <p>
- The Disney movie <em>The Little Mermaid</em> was
- first released to theatres in 1989.
- </p>
- <aside>
- The movie earned $87 million during its initial release.
- </aside>
- <p>
- More info about the movie...
- </p>
- </article>
當<article>元素嵌套使用時,則該元素代表與父元素有關(guān)的文章。例如,代表博客評論的<article>元素可嵌套在代表博客文章的<article>元素中。
<article>元素中文章作者的信息可通過<address>元素表示,但是不適用于嵌套的<article>元素。
XML/HTML Code復制內(nèi)容到剪貼板
- <article class="film_review">
- <header>
- <h2>侏羅紀公園</h2>
- </header>
- <section class="main_review">
- <p>Dinos were great!</p>
- </section>
- <section class="user_reviews">
- <article class="user_review">
- <p>Way too scary for me.</p>
- <footer>
- <p>
- Posted on <time datetime="2015-05-16 19:00">May 16</time> by Lisa.
- </p>
- </footer>
- </article>
- <article class="user_review">
- <p>I agree, dinos are my favorite.</p>
- <footer>
- <p>
- Posted on <time datetime="2015-05-17 19:00">May 17</time> by Tom.
- </p>
- </footer>
- </article>
- </section>
- <footer>
- <p>
- Posted on <time datetime="2015-05-15 19:00">May 15</time> by Staff.
- </p>
- </footer>
- </article>