I am on an expedition to reduce the size of my CSS file. I thought of the following trick:

I have several elements which use similar properties, like

.a {
   float:left;
   /* Other properties */
}

.b {
   float:left;
   /* Other properties */
}

.c {
   float:left;
   /* Other properties */
}

So, I thought, why not make a separate class selector, say, k:

.k {
    float: left;
}

and then include class selector k for whichever elements require float:left. Thus, we can remove the float: left line from .a, .b and .c Similarly we will have class selectors for all the common properties like float:right, font:normal normal normal 16px/normal arial,sans-serif. This would save lots of characters in CSS file, and lead to a small increase in size of html file.

What do you think about this approach? Would you do it? are there any pitfalls?

link|improve this question

2  
Sounds like you are wanting to try something similar to Object-Oriented CSS. Nicole Sullivan thinks it's a good idea. Personally I'm not so sure about this approach but according to her speech Facebook implemented it and not only cut their CSS size but also their HTML size. – Useless Code Jul 28 '11 at 5:21
3  
What you are proposing is not semantic CSS, it's shorthand for style attributes. So, all the negatives for style apply. I would not recommend this approach, since it makes it very hard (or impossible) to restyle with stylesheets, since the style will be tightly locked to your markup. – NickC Jul 28 '11 at 5:24
@Renesis: That's a valid point. Following this approach, if I want to change style of certain element, I would have to edit my html instead of CSS file, which is not a good idea. – Vivek Pandey Jul 28 '11 at 5:29
feedback

6 Answers

up vote 2 down vote accepted

I think you have multiple options here:

  1. Using Less CSS which provides inheritance and mixin capabilities in your CSS
  2. Use Grid 960 system to make semantic CSS rules (as you described for floating)
  3. Define semantic classes for your elements to address multiple elements at once, and of course, to address one element via multiple classes. For example, an element could have these classes: class='float-left button width-10'

But be careful to not being trapped in the concept of divities and classities

link|improve this answer
feedback

I would recommend looking seriously at using something like Saas for more manageable and readable css

If you're concerned about the filesize of you css files for performance reasons then you should consider minimizing the css with something like YUI Compressor

link|improve this answer
1  
Or lesscss.org – Jason Kaczmarsky Jul 28 '11 at 5:22
feedback

Most of the time you have most of your css in a few external sheets that are used by every page. These get cached so they only need to be loaded once. Also, you should not sacrifice readability of your markup or css for a hardly noticeable performance boost. Semantic markup is key.

link|improve this answer
feedback

Thats the right approach in fact. Using inheritance accross CSS class is not just simplyfy your stylesheet, it also make it manageable. In addition, you might need to minify your css in your final output, to maximize its performance.

link|improve this answer
feedback

If you want to reduce he amount of CSS on your site you should be looking at object oriented CSS. Here's a quick introduction:

http://net.tutsplus.com/articles/lectures/the-top-5-mistakes-of-massive-css/

It uses Facebook as an example and how they reduced their CSS...

link|improve this answer
feedback

Even though the later HTML specifications ends up talking very little about the class attribute we can see through earlier specifications and discussions that there is a deeper meaning to it. The fundamental idea behind the HTML class attribute is to semantically subclass HTML elements. These pseudo elements are useful for precisely the application you have in mind, which is to further specify the kind of data enclosed within a tag. That means to provide data about data. This data is called metadata. Style sheets are merely one application of the class attribute. That stylesheets can take advantage of this is just a happy consequence. The HTML class attribute is meant for semantics, not for styling purposes.

If you add classes just for presentational purposes and to reduce the size of your CSS files you abuse classes.

Note that there are more to CSS performance than the download size. Rendering performance may be more important in the long run. I would suggest you do the following:

  • Use a tool like Speed Tracer or Page Speed to analyze the performance of your site
  • Minimize your CSS files
  • Remove unused CSS
  • Use some of the CSS frameworks that have been listed in other answers to this question

For more about performance I strongly recommend the MIX11 session "50 Performance Tricks to Make Your HTML5 Web Sites Faster". It is a must see!

You can also share styles between different classes using grouping:

.a
{
    /* Other properties */
}
.b
{
    /* Other properties */
}
.c
{
    /* Other properties */
}

.a, .b, .c
{
    float: left;
}

I have written extensively about the purpose of the HTML class attribute in my blog post "The HTML class attribute: for styling purposes only?" if you are interested.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.