我不知道这是不是一个好主意,用来显示一个论坛的主题:
<article>
<section>First post</section>
<section>Second post</section>
<section>etc</section>
</article>它是正确的,或者我应该使用<div>
发布于 2013-02-15 04:37:22
我会做的(更新)
<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>https://stackoverflow.com/questions/14883535
复制相似问题