Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How should the following CSS elements be ordered in the external CSS file?

body {
font-family: Georgia, "Times New Roman", serif;
font-size: 1.125em;
line-height: 1.5em;
margin: 0 auto;
max-width: 41em;
}

a {
color: #333;
}

h1, h2 {
font-size: 1.4em;
font-weight: normal;
margin: 0;
}

strong {
font-weight: bold;
}

i {
font-style: italic;
}

time {
color: #666;
font-size: 1.1em;
font-style: italic;
}

nav {
margin: 0 0 0.8em 0;
}

.utmost {
background-color: #ddd;
margin: 0 0 1em 0;
padding: 0.92em;
}

.cv, .error, .post {
margin: 0 0.92em 1em 0.92em;
}

.about {
margin: 0.8em 0.92em 0.8em 0.92em;
}
share|improve this question
I usually write them in the order of importance, or which you want to load first (though it really makes no difference). Alternatively, put them relatively in the same order that the page requires them. (In Firefox, use the Inspect tool, under "tools>web developer>inspect" and click "3D-view" to see which are at the base of the page (body usually) and then order them from the "ground" up. You could also compress and minify your CSS files to save transfer time and bandwidth so that the page "loads" faster. – ionFish Aug 3 '12 at 16:07

migrated from webmasters.stackexchange.com Aug 3 '12 at 16:19

1 Answer

There's not enough information here to give you an exact answer. "How to order your CSS" depends on how you want/need your CSS to be displayed.

Ordering can be important due to CSS specificity. If two CSS rules have the same specificity, the CSS rule that came last, one will overwrite the rule that came earlier (earlier means closer to the start of a file).

However, what's more important to know is specificity. Here's a great article on CSS specificity: http://coding.smashingmagazine.com/2007/07/27/css-specificity-things-you-should-know/

In my opinion, the most important thing to remember about CSS ordering is when using rules on anchor tags and the :link, :hover, :visited selectors. Here's a good article on that subject.

http://www.w3.org/TR/CSS2/selector.html#dynamic-pseudo-classes

In short, you want your anchor selectors to be in this order:

a:link    { color: red }    /* unvisited links */
a:visited { color: blue }   /* visited links   */
a:hover   { color: yellow } /* user hovers     */
a:active  { color: lime }   /* active links    */

The reason for this can be understood by understanding specificity, as I mentioned earlier. Each of the above anchor selectors have the same specificity. So, the ordering matters.

I hope that helps!

If you expand your question to explain why you're looking to re-order your CSS (I'd guess you're having some odd CSS issue), SO can help more specifically with your problem.

Cheers!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.