Are there any good CSS coding style/standards?
closed as not constructive by BoltClock♦ May 17 '12 at 15:08
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Here is a good one: http://www.phpied.com/css-coding-conventions/ But the important thing is to pick something and stick with it for consistency. |
|||
|
|
|
I agree with most of the points at Andrew Hare's link, but I strongly believe
is inferior to:
on the grounds that:
or:
are considerably less obvious to grep or read than:
|
|||||||
|
|
There's no standard standard, as it were. There are most certainly plenty of in-house standards and conventions. And there are certainly known best practices. I stick to the following:
|
|||
|
|
|
When I code in CSS:
You can see some example in CSS Zen Garden Generally I insert the most important elements over the other: if there's
Reading the CSS file I know the format rules before about the most particular elements, after the rules about the most general elements. |
||||
|
|
Pretty coding style VS site speed I've been working with pretty huge CSS files, and found out some pretty interesting things that I've never read about before. @import One thing is using @import. That's actually a bottleneck - by going away from using @import completely, the site got a lot more snappy. #every .style { in one line } When the browser reads a document, it reads line by line, so by switching from my pretty coding style to this, I accomplished 2 things;
|
|||||
|
|
Put your css rules (ex: "color: red;") in alphabetical order and also put your selectors (ex: "div { color: red; }") in order they appear in your markup. Separate code for structure from skin. |
|||
|
|
|
Just from experience I used to write quite long CSS style sheets. Now my style sheets typically are half a page. So keep it simple(KISS), line based (greppable) and keep it compact (use font: instead of font-size etc etc.). Also I highly recommend using CSSlint to check your code for fluff. |
|||||
|
|
Check Sass out. It's a template language for CSS that makes your source code DRY:er and mucho easy to read. Even if you're not using ruby you can use it for this task and automate the building of your css files from Sass source. And there are probably Sass implementations in other languages too. |
||||
|
There's probably loads. At our work we use the following:
The =div allows us to search against all div elements by using the search functionality. There's loads more though, I've used many different variations of this in the past. |
|||
|
|
|
The main good coding style is to actually separate css files according to their goals. That way, whatever coding convention you will choose, you will have consistent and manageable separate css files... easier to debug. |
|||
|
|
|
In addition to what others said, remember that the C stands for 'Cascading', i.e. subelements inherit from top level elements. Sound simple and straight away. But I have often seen CSS files that contain redundant declarations, e.g. for font styles. This makes a CSS more complex and hard to maintain. So before you add something to your CSS make sure that it is not redundant, i.e. check parent elements and remove redundant declarations from children. Given this you should organize your CSS in a way so that high level elements (like declarations for the body class) are mentioned first and more specialized elements last. |
|||
|
|
|
This might also be helpful, a few tips to keep your CSS styles DRY - as in "Don't Repeat Yourself" link text |
|||
|
|
|
I will strongly recommend looking at Less: http://lesscss.org While not really a standard, it has been gaining a lot of momentum recently. Less is css extension that runs in the browser bringing variables and functions into the language and therefore allowing templating. |
|||
|
|