HTML semantics: Is it a good idea to put links (anchor elements) in headings?
问题 Is that wrong to build news list this way: <h1><a href="article-1.html">That happened!</a></h1> <div class="short">Just like planned</div> Should I prefer this? <h1>That happened!</h1> <div class="short">Just like planned</div> <div><a href="article-1.html">Read it now</a></div> or remove header elements? <div class="news-header"><a href="article-1.html">That happened!</a></div> <div class="short">Just like planned</div> 回答1: It is syntactically valid to put anchors inside headings. Your