我不知道用这个代码显示论坛的主题是否是一个好主意:
<article>
<section>First post</section>
<section>Second post</section>
<section>etc</section>
</article>
这是正确的还是我应该使用<div>
?
答案 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>