The Standard For Linking <h> Tag Elements - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T15:52:30Z http://stackoverflow.com/feeds/question/308359 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/308359/the-standard-for-linking-h-tag-elements 2 The Standard For Linking <h> Tag Elements zuk1 2008-11-21T10:28:05Z 2008-11-21T11:17:45Z <p>Is either:</p> <pre><code>&lt;a href="#"&gt;&lt;h1&gt;text here&lt;/h1&gt;&lt;/a&gt; </code></pre> <p>or</p> <pre><code>&lt;h1&gt;&lt;a href="#"&gt;text here&lt;/a&gt;&lt;/h1&gt; </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#308375 16 Answer by Owen for The Standard For Linking <h> Tag Elements Owen 2008-11-21T10:37:17Z 2008-11-21T10:47:06Z <pre><code>&lt;h1&gt;&lt;a href="#"&gt;text here&lt;/a&gt;&lt;/h1&gt; </code></pre> <p>is correct, as HTML does not allow a block element (<code>&lt;h1&gt;</code>) within an inline element (<code>&lt;a&gt;</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#308376 5 Answer by Daan for The Standard For Linking <h> Tag Elements Daan 2008-11-21T10:37:17Z 2008-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#308378 0 Answer by DrJokepu for The Standard For Linking <h> Tag Elements DrJokepu 2008-11-21T10:37:39Z 2008-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>&lt;h*&gt;</code> are block elements, <code>&lt;a&gt;</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>&lt;a&gt;&lt;h1&gt;&lt;/h1&gt;&lt;/a&gt;</code> is invalid.</li> <li><code>&lt;a href="#"&gt;&lt;h1&gt;text here&lt;/h1&gt;&lt;/a&gt;</code> is a link that can have multiple child nodes. In this case, it only has a <code>&lt;h1&gt;</code> child node, but nothing is stopping you from adding more.</li> <li>On the other hand, <code>&lt;h1&gt;&lt;a href="#"&gt;text here&lt;/a&gt;&lt;/h1&gt;</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#308459 0 Answer by Kent Fredric for The Standard For Linking <h> Tag Elements Kent Fredric 2008-11-21T11:17:45Z 2008-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> &lt;a&gt;&lt;h1&gt;foo&lt;/h1&gt;&lt;/a&gt; </code></pre> <p>gets broken into</p> <pre><code> &lt;a&gt;&lt;/a&gt; &lt;h1&gt;&lt;a&gt;foo&lt;/a&gt;&lt;/h1&gt; &lt;a&gt;&lt;/a&gt; </code></pre> <p>And this can create <em>interesting</em> results. ;)</p>