I'd love to see an example of super organized, tight CSS. Do you organize by location (header, footer, body), by function (typography, position data), or both, with multiple instances of the same selector? Wondering how my css stacks up and where I could improve. Thanks! (:
[+] [-] simonw|15 years ago|reply
http://lanyrd.com/2008/barcamp-london-5/sg/
She splits everything in to general styles (basic HTML elements), helper styles (things like forms, notifications, icons), page structure (header, footer, layout columns etc), page components (reusable composable classes for components that occur on different pages in different combinations, such as a news teaser) and over-rides (special cases for individual pages, rarely used).
She hardly ever uses IDs, preferring classes for almost everything - because CSS written against classes can be used more than once on a page.
She uses CSSEdit's groups feature to make the CSS easier to navigate - it's all in one file. http://macrabbit.com/cssedit/
View the stylesheets on http://lanyrd.com/ and follow the link at the top to the unminified version to see annotated examples.
[+] [-] tintin|15 years ago|reply
[+] [-] dfischer|15 years ago|reply
Goes hand-in-hand with javascript to ease selector targeting.
I never scope ID's either, that's the wrong way to do it. An ID is always unique so it is top-level.
[+] [-] halles|15 years ago|reply
[+] [-] kentbrew|15 years ago|reply
[+] [-] zefhous|15 years ago|reply
Then, my code is usually organized as follows. Each section can be extracted to a partial if it gets long enough or if more separation is desired.
Since Sass uses indentation, I indent everything in each section within a top level tag. This really helps visually distinguish each section and gives a much less uniform look to the stylesheet which makes it a lot more scannable. If a section uses methods exclusively I'll declare them just above the top-level section tag.I'm pretty happy with this approach. It was formed fairly organically but become more defined as I use it for more projects. It also seems to work well for both large and small projects, since partials can be used when the code starts getting long.
[+] [-] nagash|15 years ago|reply
[+] [-] storborg|15 years ago|reply
All files get concatenated and minified before serving, obviously.
[+] [-] AyKarsi|15 years ago|reply
[+] [-] keyle|15 years ago|reply
[+] [-] peng|15 years ago|reply
Stylus is great: http://learnboost.github.com/stylus/
I made a post about it, and personally prefer it to Sass and Less: http://nylira.com/stylus-the-revolutionary-successor-to-css/ The hardcore abbreviation mixins in my post seem to offend some coders. When you work in CSS and HTML hours every day though, every character saved adds up to a huge productivity boost.
My current project has 30 directories with 73 partial Sass files, which compile down to one 320kb file.
As to your question, I organize my partials based on controller and url structure.
[+] [-] erikpukinskis|15 years ago|reply
Isn't that a lot to download? That's like 2 seconds on average to download that file in the U.S., and probably in the 10 seconds or higher range for a lot of folks. I guess if the download is delayed to after some kind of engagement (sign up, etc) it's not a big deal?
Is 320K of CSS really necessary? (legitimately asking)
[+] [-] duopixel|15 years ago|reply
reset.css There's a bunch around, I use the one from htmlboilerplate.com, but there's many good ones available. (Eric Meyer's). You will almost never touch this file.
grid.css I only use this occasionally, when I'm working on sites where the grid is very clear and I take out all the stuff I'm not going to use. I usually go for a three col version of 960.gs and trim it to about 12 lines of css. Never touch this.
global.css Here you put your nav, your footer, you body styles, etc. I think that separating by colors and typography doesn't make sense, because you usually change a widget's appearance.
section.css I count on the body tag having a classname, so I can have body class="about" and then do...
This way you never override your styles accidentally.Miscellaneous I avoid the one declaration per line convention when I have similar styles and I want to be able to read them in a table format, i.e.
I usually start from the most generic to the more specific, but I don't worry too much about code order because in the end I just do a search and reach it in no time.[+] [-] tomfakes|15 years ago|reply
[+] [-] eam|15 years ago|reply
[+] [-] mryall|15 years ago|reply
Most of the command-line diff tools don't highlight changes within a single line, and annotation tools usually work on a per-line basis as well.
[+] [-] carterdea|15 years ago|reply
[+] [-] karl11|15 years ago|reply
I always put universal elements first (body, img, @font-face, etc.), then I just organize it top to bottom by page location (i.e. header, content, sidebar, footer, etc.). I also tab-indent so that elements within another are indented and "contained" underneath, making it easy for me to move from one section to the next. I also write the CSS horizontally, only making a new line for a new element.
I should also note that I'm a n00b :-), so this could be a horrible way to do it.
[+] [-] j79|15 years ago|reply
(I actually find the tab-indented elements really interesting and may have to try it on my next project!)
One thing you didn't mention were comments. I've seen some css files with great commenting. For instance, comments at the top that act as an index/table of content for the css file. Very nice!
[+] [-] Skalman|15 years ago|reply
Also, when having quite a few properties for a selector, it's quite difficult to read when all is on one long line, so I use new lines for each property.
[+] [-] bitsm|15 years ago|reply
Generally, these library files will simply contain mixins (reusable chunks of code), so they don't output anything directly into your CSS, but allow you to include the mixins in certain styles. Very useful for adding effects, rounded corners, etc. on different elements.
Keep in mind however, that mixins can be overused, adding bloat to your code. CSS does cascade, after all. You should always look to see if you can separate reusable css rules to include in markup (commonly seen with grid systems). How you balance out the convenience of keeping your css flexible vs. not littering your markup with lots of styles really depends on the project, but it's something to think about.
I have developed one very useful trick while using Sass for managing colors. Instead of assigning colors directly to an element (very hard to track down later if a change is necessary), I create color variables named after the element and attribute in question. Then in my colors.scss file, I build up my color palette, and after, list all the color variables I created in my stylesheets, setting their values to the appropriate color from the palette (with tweaks, if necessary).
Since Sass lends itself to lots of files, keeping all my colors and the elements they are assigned to together in one file makes them much easier to manage down the road.[+] [-] jarin|15 years ago|reply
[+] [-] utunga|15 years ago|reply
She used this approach at Facebook (and Yahoo, I think?) to successfully tidy up a huge code base of thousands of CSS files down to a more manageable few.
I attended her workshop at Webstock and since then had a chance to put it into practice on a 'get it up quick' green fields project (http://chchneeds.org.nz). I must say I was really pleasantly surprised at the way this approach just avoids a lot of the pain points, as a web developer/coder (ie not an html/css guru) I so often face when just getting the simplest things to 'work'.
I guess the hardest thing for me to get my head around to was that to make things more modular you had to let go (a tiny bit) of being so religious about 'semantic html' as a requirement for the HTML, but I think its worth it to get your CSS a whole lot more modular and 'pluggable' together.
Still a bit more work to do, IMHO, but I'm definitely going to be monitoring this project closely.
Nicole Sullivan's site: http://www.stubbornella.org/content/
[+] [-] ChrisFulstow|15 years ago|reply
[+] [-] techiferous|15 years ago|reply
[+] [-] mixu|15 years ago|reply
1) Layout and widgets only.
I start with a reset, then layout (block positioning), then widgets. Everything other than layout is a widget. There are no global styles. If there is one of it, it's an ID. If more, it's a class.
2) No (global) element styles! Ever!
No, not even a p { margin: xyz } or a ul { list-style-type }. Every element that cannot be referred to by class / id must look exactly like it would after the reset.
This avoids complex dependency chains where coincidence influences look. Widgets can be moved from one site to another and you actually have to think new widgets through rather than relying on the default values.
3) Avoid classes and id's as much as you can.
Have single base element with a simple but descriptive class name, and then specify the sub-elements.
For example: Instead of “div.content-title” use “#content h1″ (e.g. div#content with a h1 tag inside it).
Basically, design widgets which consist of one base element, and refer to sub-elements via longer expressions. Use indentation to separate sub-elements.
My strong preference is to maximize for human readability (=short dependency chains, descriptive widgets rather than single elements) rather than short CSS. Cascading within widget-scope is fine, but cascading with global styles should be avoided. I find that when I follow these rules, I like my CSS a lot more.
[+] [-] dfischer|15 years ago|reply
I utilize mixins heavily so I can modulize all my styling and make sure it's included in areas that are appropriate. I've learned this is the only way to handle CSS without styles getting too complicated and accidentally changing something where you didn't mean to.
Example (create a mixin that has certain styles for forms and then include it in a body.wizard page) this way I keep my CSS very dry.
General coding guidelines are horizontal. I recently switched to this. I used to do vertical and indentation but it's very hard to read with big files. I've found that it's a lot easier to read horizontal CSS.
I alpha all my styles from a-z.
[+] [-] carbon8|15 years ago|reply
The nice thing about sass is that it you can change output format, so you can just include all the external CSS files as partials and automatically output a single compressed files with your entire CSS.
When I work with a designer who uses CSS I use a structure like this:
In this case, the designer's CSS is dumped in the _style.scss partial, then included in master.sass. Then in master.sass I include my modifications to the designer stylesheets. That way I can leave the designer-provided CSS largely untouched and still have all the flexibility and power of Sass.[+] [-] PelCasandra|15 years ago|reply
[+] [-] bdclimber14|15 years ago|reply
I also have a "colors" partial where I put variables for all my color definitions, such as $light-blue, $dark-gray, and $background-color.
[+] [-] TorbjornLunde|15 years ago|reply
- Have only one CSS-file, unless your project is huge.
- Never use IDs
- Avoid reset CSS (espescially if you can ignore IE6/7
- If you think you need variables (like in SASS), you are probably thinking about it the wrong way
- Give classes functional names, not presentational
- Linebreaks after declaration. (Makes your CSS-file easier to navigate)
- Remember that you can use you media queries inside your CSS-file
Web designer Jens Meiert has some good articles:
http://meiert.com/en/blog/20090401/why-css-needs-no-variable...
http://meiert.com/en/blog/20080515/css-organization-and-effi...
http://meiert.com/en/blog/20070321/css-practice-pseudo-names...
http://meiert.com/en/blog/20090527/css-maintenance-issue-1/
[+] [-] skrebbel|15 years ago|reply
I've yet to see CSS code for page layout without the usual awkwardness where margin-left of some element MUST equal some other element's width minus some bar's left offset, yadayada. It's for stuff like this that variables make sense. I wholeheartedly agree that if you need a variable to colour two bars and a heading orange, you're probably doing it wrong.
The blog you refer to only has an example with colours, which is just too easy.
[+] [-] evanrmurphy|15 years ago|reply
Edit: Rephrased to try and better express the idea.
[+] [-] mikecomstock|15 years ago|reply
- Almost all CSS goes in 1 big file. One line per selector to keep thinks clean and easy to find. Styles from external sources (like jQuery UI) go in separate files.
- Reset lines go at the top, if you use them, in a / RESET / section.
- Styles for individual HTML tags are next in the / HTML TAGS / section.
- Then a / UTILITY CLASSES / section for clearing floats, etc.
- Next comes site layout. Headers, footers, page width, etc. all go here. Just the layout though - think the grid. No real content styling yet.
- Now sections for each piece in the layout. Content styles go here. First a section for the / HEADER CONTENT /, then a big section for the / PAGE CONTENT / (vast majority of styles go here), then the / FOOTER CONTENT / styles.
[+] [-] ricardobeat|15 years ago|reply
[+] [-] bmelton|15 years ago|reply
Other than that, the best advice I can offer that I DO follow is that I group all HTML elements together, all IDs together, and then all classes together. Within each of those groupings, everything is in alphabetical order.
and so forth.[+] [-] xdrone|15 years ago|reply
one thing to do is to place class names based on the url with your id's. the class name can be generated from the request_uri (assuming the html code is in a view/template/include).
example: <div id="container" class="contact_us">
then if you need tweaks to a specific page, just add #container.contact_us { foo: bar... }
[+] [-] csbartus|15 years ago|reply
After reading all comments it seems there is no (universal) solution to write good HTML/CSS code. Not like in Ruby or Python or other programming languages.
Since this year I'm struggling to create a post / best practices how to code front-end but the problem is too complex (for me).
The biggest issue is how to mark up HTML to have a DRY (minimal) CSS. And how to remember easily these mark up rules to be able to maintain anytime in the future your CSS/HTML.
If you would elaborate your naming / marking up best practices instead of suggesting frameworks/tools maybe that would help better.
[+] [-] kaylarose|15 years ago|reply
2. Only use the minimal selectors you need: div#features ul.feature_list li.feature a{color:red;} could be DRYed up to be .feature_list .feature a{color:red;} which will be far easier to override later.
3. Avoid !important at all costs (sometimes you can't, but try).
4. This is personal taste, but I also usually avoid IDs for styling.
5. Grid frameworks (Blueprint, etc.) are usually overkill, but syntax frameworks (LESS CSS, Compass) are fantastic.
It really boils down to experience, and knowing what you DON'T need - most people add in a ton of extra cruft and end up with hard to extend and debug spaghetti.