2013-05-08 68 views
1

我編寫了HTML5文章列表。我一直在搜索這是否是使用新的HTML5語義標記的正確方法,但我仍然不確定。這個標記在使用語義方面是否正確?HTML5文章LIst

<section> 
    <article> 
     <h2>Article</h2> 
     <p>Description of article</p> 
    </article> 
    <article> 
     <h2>Article</h2> 
     <p>Description of article</p> 
    </article> 
    <article> 
     <h2>Article</h2> 
     <p>Description of article</p> 
    </article> 
</section> 
+0

這裏看看http://stackoverflow.com/questions/7183132/how-to-correctly-use-section-tag-in-html5 – varun 2013-05-08 16:26:47

+2

更好的候選人http://codereview.stackexchange.com。 – deceze 2013-05-08 16:27:20

回答

6

是的,這很好,但它會更好,如果<section>也有一個標題,例如

<section> 
    <h1>Article List</h1> 
    <article> 
     <h2>Article</h2> 
     <p>Description of article</p> 
    </article> 
    ... 
</section>