문제

I don't know if it could be a good idea use for show a forum's topic this code:

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

It is correct or instead I should use <div>?

도움이 되었습니까?

해결책

I'd do (updated)

<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>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top