0
考慮下面的一塊標記:如何語義改善這個HTML片段
<a href="/description/item1">
<img src="item1.jpg">
<footer>
<section>
<h2 class="title">Bar Foo</h2>
<h3 class="subtitle">The end of the world</h3>
</section>
<section class="details">
<h4 class="name">Painted by Someone</h4>
<h5 class="id">123243552345</h5>
</section>
</footer>
</a>
反正,我一直與語義的困難。我認爲上面的代碼中並沒有使用像段/頁腳正確的元素(請糾正我,如果我錯了!)所以,我可以把它改寫爲:再次
<a href="/description/item1">
<img src="item1.jpg">
<header>
<h2 class="title">Bar Foo</h2>
<h3 class="subtitle">The end of the world</h3>
</header>
<footer>
<h4 class="name">Painted by Someone</h4>
<h5 class="id">123243552345</h5>
</footer>
</a>
不過呢,應該不是錨(或包裹)一篇文章,在這裏是正確的頁腳,它只是關於圖像的內容?有人可以用這段代碼來幫助我,並指導我完成這個過程,使它在語義上正確/更好嗎?任何意見或文件,將不勝感激!
看起來像一個與我無形的身影。 – 2014-10-27 16:21:35
你需要4個級別的標題爲一個圖像? – Alohci 2014-10-27 17:29:05