Order of tags in <head></head> - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T06:31:47Z http://stackoverflow.com/feeds/question/190890 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/190890/order-of-tags-in-head-head 15 Order of tags in <head></head> Pickledegg 2008-10-10T11:23:35Z 2008-10-15T21:26:41Z <p>does it matter at all what order the <code>&lt;link&gt;</code> or <code>&lt;script&gt;</code> or <code>&lt;meta&gt;</code> tags are in in the <code>&lt;head&gt;&lt;/head&gt;</code>?</p> <p>(daft question but one of those things i've never given any thought to until now.)</p> http://stackoverflow.com/questions/190890/order-of-tags-in-head-head/190897#190897 4 Answer by yuku for Order of tags in <head></head> yuku 2008-10-10T11:27:29Z 2008-10-10T11:27:29Z <p>meta does not matter, but link (for css) and script matters.</p> <p>script will block most browser from rendering the page until the scripts are loaded. Therefore, if possible put them not in the head, but the body.</p> <p>css link will not block page rendering.</p> http://stackoverflow.com/questions/190890/order-of-tags-in-head-head/190898#190898 0 Answer by p4bl0 for Order of tags in <head></head> p4bl0 2008-10-10T11:28:02Z 2008-10-10T11:28:02Z <p>Nope, it doesn't matter, except for CSS linking or inclusion, because of CSS inheritance and the fact that it overwrite what was already styled (sorry for my english, i think my sentence is not really clear :-/).</p> http://stackoverflow.com/questions/190890/order-of-tags-in-head-head/190899#190899 30 Answer by Joe Lencioni for Order of tags in <head></head> Joe Lencioni 2008-10-10T11:28:26Z 2008-10-10T15:09:20Z <p><strong>Optimization</strong></p> <p>According to the folks over at Yahoo! you should <a href="http://developer.yahoo.com/performance/rules.html#css_top" rel="nofollow">put CSS at the top</a> and <a href="http://developer.yahoo.com/performance/rules.html#js_bottom" rel="nofollow">scripts at the bottom</a> because scripts block parallel downloads. But that is mostly a matter of optimization and is not critical for the page actually working. <a href="http://stackoverflow.com/users/20980/joeri-sebrechts">Joeri Sebrechts</a> pointed out that <a href="http://stevesouders.com/cuzillion/" rel="nofollow">Cuzillion</a> is a great way to test this and see the speed improvement for yourself.</p> <p><strong>Multiple Stylesheets</strong></p> <p>If you are linking multiple stylesheets, the order they are linked may affect how your pages are styled depending on the <a href="http://www.stuffandnonsense.co.uk/archives/css_specificity_wars.html" rel="nofollow">specificity of your selectors</a>. In other words, if you have two stylesheets that define the same selector in two different ways, the latter will take precedence. For example:</p> <p>Stylesheet 1:</p> <pre><code>h1 { color: #f00; } </code></pre> <p>Stylesheet 2:</p> <pre><code>h1 { color: #00f; } </code></pre> <p>In this example, <code>h1</code> elements will have the color <code>#00f</code> because it was defined last with the same specificity:</p> <p><strong>Multiple Scripts</strong></p> <p>If you are using multiple scripts, the order they are used may be important if one of the scripts depends on something in another script. In this case, if the scripts are linked in the wrong order, some of your scripts may throw errors or not work as expected. This, however, is highly dependent on what scripts you are using.</p> http://stackoverflow.com/questions/190890/order-of-tags-in-head-head/190900#190900 1 Answer by davidg for Order of tags in <head></head> davidg 2008-10-10T11:28:43Z 2008-10-10T11:28:43Z <p>It would only matter if one of the linked files (CSS/Javascript) depended on another. In that case, all dependencies must be loaded first.</p> <p>Say, for example, you are loading a jQuery plugin, you'd then need to first load jQuery itself. Same when you have a CSS file with some rules extending other rules.</p> http://stackoverflow.com/questions/190890/order-of-tags-in-head-head/190902#190902 2 Answer by Adhip Gupta for Order of tags in <head></head> Adhip Gupta 2008-10-10T11:29:20Z 2008-10-10T11:29:20Z <p>It is usually recommended to have the <code>&lt;script&gt;</code> tag as lower down the page as possible (not in the head but in the body). </p> <p>Other than that, I don't think it makes much of a difference because the body cannot be parsed unless you have the <code>&lt;head&gt;</code> section completely loaded. And, you want your <code>&lt;link&gt;</code> tag to be in the head as you want your styling to occur as the browser renders your page and not after that!</p> http://stackoverflow.com/questions/190890/order-of-tags-in-head-head/190916#190916 2 Answer by olavk for Order of tags in <head></head> olavk 2008-10-10T11:35:36Z 2008-10-10T11:35:36Z <p>If you declare the charset in a meta element, you should do it before any other element.</p> http://stackoverflow.com/questions/190890/order-of-tags-in-head-head/190923#190923 2 Answer by Raithlin for Order of tags in <head></head> Raithlin 2008-10-10T11:41:59Z 2008-10-10T11:41:59Z <p>Not a daft question at all.<br /> CSS above Script tags for reasons already mentioned.</p> <p>CSS is applied in the order you place the tags - the more specific the stylesheet, the lower down the order it should be.</p> <p>Same goes for scripts - scripts that use functions declared in other files should be loaded after the dependency is loaded.</p> http://stackoverflow.com/questions/190890/order-of-tags-in-head-head/190926#190926 9 Answer by Bno for Order of tags in <head></head> Bno 2008-10-10T11:42:32Z 2008-10-10T11:42:32Z <p>It's recommended to put the meta tag with the character encoding as high as possible. If the encoding is not included in (or differs from) the response header of the requested page, the browser will have to guess what the encoding is. Only when it finds this meta tag it knows what it is dealing with and it will have to read everything it has already parsed again.</p> <p>See for instance <a href="http://www.webrichtlijnen.nl/english/manual/development/production/character-encoding/the-web/methods/" rel="nofollow">Methods for indicating the character set</a>.</p> http://stackoverflow.com/questions/190890/order-of-tags-in-head-head/190951#190951 4 Answer by Keith Williams for Order of tags in <head></head> Keith Williams 2008-10-10T11:51:43Z 2008-10-10T11:51:43Z <p>One important thing to note: if you're using the Internet Explorer meta X-UA-Compatible tag to switch rendering modes for IE, it needs to be the first thing in the HEAD:</p> <pre> &lt;head&gt; &lt;meta http-equiv="X-UA-Compatible" content="IE=7" /&gt; &lt;title&gt;Page title&lt;/title&gt; ...etc &lt/head&gt; </pre> http://stackoverflow.com/questions/190890/order-of-tags-in-head-head/191675#191675 2 Answer by Shadow2531 for Order of tags in <head></head> Shadow2531 2008-10-10T14:45:03Z 2008-10-10T14:45:03Z <p>Put the meta tag that declares the charset as the first element in head. The browser only searches so far for the tag. If you have too much stuff before the meta element, the charset might not get applied.</p> <p>If you use the BASE element, put it before any elements that load URIs (if desired).</p> http://stackoverflow.com/questions/190890/order-of-tags-in-head-head/191745#191745 2 Answer by Konrad Rudolph for Order of tags in <head></head> Konrad Rudolph 2008-10-10T15:02:14Z 2008-10-10T15:02:14Z <p>The accepted answer <em>is</em> kind of wrong, depending on the encoding of the document. If no encoding is sent by in the HTTP header, the browser has to determine the encoding from the document itself.</p> <p>If the document uses a <code>&lt;meta http-equiv="Content-Type" …</code> declaration to declare its encoding, then any ASCII-valued character (character code &lt; 128) occurring before this statement <strong>must</strong> be an ASCII value, as per <a href="http://www.w3.org/TR/html4/charset.html#h-5.2.2" rel="nofollow">HTML 4 spec</a>. Therefore, it's important that this <code>meta</code> declaration occurs before any other element that may contain non-ASCII characters.</p> http://stackoverflow.com/questions/190890/order-of-tags-in-head-head/191953#191953 1 Answer by Tamm for Order of tags in <head></head> Tamm 2008-10-10T15:45:47Z 2008-10-10T15:45:47Z <p>As already pointed out meta describing content charset should be the first otherwise it could actually be a security hole in a certain situation. (sorry i dont remember that situation well enought to describe here but it was demostrated to me at web security training course)</p> http://stackoverflow.com/questions/190890/order-of-tags-in-head-head/193730#193730 1 Answer by Trevor for Order of tags in <head></head> Trevor 2008-10-11T05:57:52Z 2008-10-11T05:57:52Z <p>I recently was having a problem with a draggable jquery ui element. It was behaving properly in Firefox, but not Safari. After a ton of trial and error, the fix was to move my css links above the javascript links in the head. Very odd, but will now become my standard practice.</p> http://stackoverflow.com/questions/190890/order-of-tags-in-head-head/206567#206567 1 Answer by nitind for Order of tags in <head></head> nitind 2008-10-15T21:26:41Z 2008-10-15T21:26:41Z <p>For the purposes of validation as XHTML, yes. Otherwise you're probably going to care about the optimization answers.</p>