论坛主题的<article>和<section>?</section> </article>

时间:2013-02-14 20:34:35

标签: html5 forum article

我不知道用这个代码显示论坛的主题是否是一个好主意:

<article>
    <section>First post</section>
    <section>Second post</section>
    <section>etc</section>
</article>

这是正确的还是我应该使用<div>

1 个答案:

答案 0 :(得分:1)

我会(更新)

<section>
    <article>First post</article>
    <article>First post</article>
</section>
<section>
    <article>Second post</article>
    <article>Second post</article>
</section>
<section>
    <article>etc</article>
    <article>etc</article>
</section>