2013-08-18 64 views
1

我知道,每一個<section>必須包含一個<h1>,但如果我把<section><article>裏面,我有什麼對<section>內使用內部分? <h1><h2>HTML5 - 文章

詳細地說,我的文章是一篇博客文章,該部分是「文章的相關內容」,就像一段視頻或一組圖片(圖庫)。

感謝

回答

3

一節不一定包含<h1>,但他們一定會幫助安排您的內容,並賦予其語義。

如果我擁有了你所描述的結構,我肯定會用正常<h1>-<h6>進展來構建我的文檔:一如往常

<article> 
    <h1>...</h1> 
    <p>...</p> 
    <section id="related-content"> 
     <h1>Related Content<h1> 
     <h2>Video</h2> 
     <p>...</p> 
     <h2>Gallery</h2> 
     <p>...</p> 
    </section> 
    <section id="another-section"> 
     <h1>Another amazing section!<h1> 
     <h2>...</h2> 
     <p>...</p> 
     <h2>...</h2> 
    </section> 
</article> 

,有疑問時,驗證標記http://validator.w3.org/

1

爲什麼您的部分需要<h1>?它沒有。

如果在<article><section>,你可以在你<section>使用任何flow content,即可以同時使用<h1><h2>只要你喜歡。

+0

您的流量內容鏈接不起作用。 – Santosh