我有一個佈局,讓我的選擇之一:最佳HTML5結構,其中標題/標題是文章標籤外
- 包括的商品標籤中的側邊欄,即使它不是特定具有商品標籤
外標題文章
什麼是構建這個最好的方法?是否有用於將標題與文章相關聯的for
屬性?
如果您想知道什麼樣的佈局會迫使我做出這樣的選擇,那麼這是一個全寬的標題部分,然後是下面的文章和邊欄。
編輯
簡化代碼
<div class="page-wrap">
<header class="article-header" itemprop="headline">
<h1>This heading section spans the width of the page</h1>
</header>
<div class="content-wrap">
<nav class="submenu">
<p>The submenu is here in the markup so that it appears above the content on mobiles, but it gets pulled to the side on wider screens.</p>
</nav>
<article class="content">
<p>Article content...</p>
</article>
<aside class="sidebar">
<p>This sidebar is not related specifically to the article on the page.</p>
</aside>
</div><!-- .content-wrap -->
</div><!-- .page-wrap -->
您是否忽略了您的示例中的整個Microdata,還是僅使用這個'itemprop'屬性?你爲什麼使用WAI-ARIA標籤(在你的例子中沒有包含WAI-ARIA,也沒有提到它)? – unor