我有& lt文章& gt,& ltsection & gt,& lt標(biāo)題& gt一切看起來都很好,但是HTML驗證器返回錯誤:
警告:文章缺少標(biāo)題。考慮使用h2-h6元素為所有文章添加識別標(biāo)題。
你能告訴我問題出在哪里嗎?
<div class="item column-1" itemprop="blogPost" itemscope="" itemtype="http://schema.org/BlogPosting">
<article>
<section class="article-intro clearfix" itemprop="articleBody">
<header>
<h2>My header text</h2>
</header>
<p>My paragraph text</p>
<p>
<img src="/images/myimage.jpg" alt="image alt">
</p>
</section>
</article>
</div>
驗證器抱怨的是你的文章塊中缺少標(biāo)題。比如,你的文章,而不是嵌套的部分。 最佳結(jié)構(gòu)應(yīng)該是這樣的:
<article>
<h1>Some heading</h1>
<p>Content of the article ... </p>
</article>
順便說一下,你并沒有做錯什么,記住這只是一個警告,而不是一個錯誤。
頁(page的縮寫)順便說一句,在遵循W3C標(biāo)準(zhǔn)方面做得很好
使用aria-label = & quot;文章& quot
<article aria-label="article">
<p>Content of the article ... </p>
</article>