The Standard For Linking <h> Tag Elements - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T15:52:30Zhttp://stackoverflow.com/feeds/question/308359http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/308359/the-standard-for-linking-h-tag-elements2The Standard For Linking <h> Tag Elementszuk12008-11-21T10:28:05Z2008-11-21T11:17:45Z
<p>Is either:</p>
<pre><code><a href="#"><h1>text here</h1></a>
</code></pre>
<p>or</p>
<pre><code><h1><a href="#">text here</a></h1>
</code></pre>
<p>"correct". Is there any benefit of using the first one, it seems more logical to me. Perhaps from an SEO point?</p>
http://stackoverflow.com/questions/308359/the-standard-for-linking-h-tag-elements/308375#30837516Answer by Owen for The Standard For Linking <h> Tag ElementsOwen2008-11-21T10:37:17Z2008-11-21T10:47:06Z<pre><code><h1><a href="#">text here</a></h1>
</code></pre>
<p>is correct, as HTML does not allow a block element (<code><h1></code>) within an inline element (<code><a></code>) (<a href="http://www.w3.org/TR/REC-html40/struct/global.html#h-7.5.3" rel="nofollow">src</a>). your first example will fail <a href="http://validator.w3.org/#validate_by_input" rel="nofollow">validation</a>.</p>
<blockquote>
<p>Generally, block-level elements may contain inline elements and other block-level elements. Generally, inline elements may contain only data and other inline elements. Inherent in this structural distinction is the idea that block elements create "larger" structures than inline elements.</p>
</blockquote>
http://stackoverflow.com/questions/308359/the-standard-for-linking-h-tag-elements/308376#3083765Answer by Daan for The Standard For Linking <h> Tag ElementsDaan2008-11-21T10:37:17Z2008-11-21T10:37:17Z<p>Your second example is the only allowed structure. The first puts a block-level element inside an inline element and HTML does not allow this. Browsers may allow it, but it is not valid HTML. </p>
http://stackoverflow.com/questions/308359/the-standard-for-linking-h-tag-elements/308378#3083780Answer by DrJokepu for The Standard For Linking <h> Tag ElementsDrJokepu2008-11-21T10:37:39Z2008-11-21T10:37:39Z<p>There ain't really much difference in this particular case. There are some things to point out though:</p>
<ul>
<li><code><h*></code> are block elements, <code><a></code> is an inline element by default. As others pointed out, XHTML does not allow block elements in inline elements, so if you did not redefine their display style in CSS, <code><a><h1></h1></a></code> is invalid.</li>
<li><code><a href="#"><h1>text here</h1></a></code> is a link that can have multiple child nodes. In this case, it only has a <code><h1></code> child node, but nothing is stopping you from adding more.</li>
<li>On the other hand, <code><h1><a href="#">text here</a></h1></code> is a header that can cave multiple nodes. You can add all sorts of child nodes to it, like labels, etc.</li>
</ul>
<p>So this is basically a logical difference without any practical differences in this particular case.</p>
http://stackoverflow.com/questions/308359/the-standard-for-linking-h-tag-elements/308459#3084590Answer by Kent Fredric for The Standard For Linking <h> Tag ElementsKent Fredric2008-11-21T11:17:45Z2008-11-21T11:17:45Z<p>Additional note, although the former case works, its purely due to browsers being permissive. You may find via inspecting the internal dom tree that</p>
<pre><code> <a><h1>foo</h1></a>
</code></pre>
<p>gets broken into</p>
<pre><code> <a></a>
<h1><a>foo</a></h1>
<a></a>
</code></pre>
<p>And this can create <em>interesting</em> results. ;)</p>