我知道每个<section>
必须包含<h1>
,但如果我在<section>
内放置<article>
,我必须在{{1}内使用}}? <section>
或<h1>
?
详细地说,我的文章是一篇博客文章,该部分是“文章的相关内容”,如视频或一组图像(图库)。
由于
答案 0 :(得分: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 :(得分:1)
为什么您的部分需要<h1>
?它没有。
如果您在<section>
中添加了<article>
,则可以使用<section>
中的任意flow content,即<h1>
和{{} 1}}如你所愿。