Published 2010-10-30, originally published at old blog

CSS is powerful in its own rights, but when it comes to large, complex websites filled with elements that doesn’t necessarily share styles easily, the styling quickly becomes messy and hard to navigate. Conventions, frameworks and guidelines help structure the code, and tools such as Firebug helps the process. But my eyes still get soar when scanning through code-snippets such as:

#header { ... }
#header .menu { ... }
#header .menu ul { ... }
#header .menu ul li { ... }
#header .login { ... }
#header .login ul { ... }

I like my html to be semantically good structured (or as good as it can get when keeping certain obstacles in mind *cough*IE6*snirk*). That means not overloading it with classes that doesn’t add meaning (such as clearfix, which I use in all of my projects). CSS doesn’t have a good way of reusing this code within the stylesheet, and this is a shame.

And then there’s the classic need for variables. When trying out different color-schemes in a design, it’s a pain if you have to update a color-code multiple places in the stylesheet. Even more fun if they’re scattered throughout the document. And what if you the color-scheme to front different colors, each related to a base-color?

LESS to the rescue!

LESS provides a solution to all of these problems. Mixins, Nested Rules, Variables and Operations are the features fronted by the developers, Alexis Sellier and Dmitry Fadeyev. I’m especially fond of the two former, which allow me to write code such as:

.clearfix { /* rules for clearfix-hack */ }
.horizontal { .clearfix; width: 100%; }
.horizontal_items { display: inline; float: left; }
.horizontal_links { display: block; }
.vertical { .horizontal; }
.vertical_items { display: block; float: none; }
.vertical_links { .horizontal_links; }

#header { ul { .horizontal; li { .horizontal_items; a { .horizontal_links; } ul { .vertical; display: none; position: absolute; li { .vertical_items; a { .vertical_links; } } } } li:hover, li.hover { ul { display: block; } } } }

When matched with markup such as:

<div id="header">
  <ul>
    <li>
      <a>item 1</a>
      <ul>
        <li>
          <a>subitem 1a</a>
        </li>
        <li>
          <a>subitem 1b</a>
        </li>
      </ul>
    <li>
    <li>
      <a> item 2</a>
    </li>
  </ul>
</div>

It’s displayed as a horizontal menu, with vertical submenus. And it works in IE6 too (only need some minor JavaScript to mimic :hover, since IE6 only supports :hover for a-elements).

When reusing style in this matter, it’s much more simpler when it comes to refactoring (which I’m considering for clearfix after reading this blog-entry (via cjohansen [norwegian])). This is especially important when dealing with CSS that aren’t standardized in all browsers yet, which are implemented with browser prefixes. Come the day when a browser vendor changes its implementation of a property, you can easily change your usage of it.

My usage of LESS

Currently I’ve tried the ported versions of LESS for .NET and PHP (as a plugin for WordPress). I can vouche for both these, altough they have slightly different implementation (RTFM).

If you wish to learn and use LESS, I can recommend this article on Nettuts. Otherwise, I would recommend you to read the documentation provided with the different projects.

Shortcomings

Although LESS is a joy to use, I do have some problems. For example, consider the code written when using modernizr (a JavaScript-library that enables feature detection of CSS3):

.rounded_corners (@radius: 5px) {
  -moz-border-radius: @radius;
  -webkit-border-radius: @radius;
  border-radius: @radius;
}

#header { .button { /* CSS that all browsers supports */ } } .borderradius #header .button { rounded_corners; }

This may seem but a slight irritation, but consider this example if #header parented style for 20+ sub-elements. Add the possibility that I wanted to use other CSS3-properties. I have no answer to how this should be solved, but my 2 cents would be the possibility to write code such as:

#header {
  .button {
    /* CSS that all browsers supports */
    [.borderradius] {
      rounded_corners;
    }
  }
}

This would equal the meaning in the former snippet, but its superior in elegance (at least in my view).

I find that mixins and nested rules are great concepts by themselves, but I miss that they can’t be combined (at least not in the versions I’ve tried). Take the example below:

.horizontal { .clearfix; width: 100%; }
.horizontal_items { display: inline; float: left; }
.horizontal_links { display: block; }

This would have been so much better if it could’ve been written

.horizontal {
  .clearfix;
  width: 100%;
  li {
    display: inline;
    float: left;
    a {
      display: block;
    }
  }
}

(Even better, I would’ve used the E > F-selector, but alas, that isn’t supported by IE6)

That was my intention, after all. Now the code for a horizontal menu would be:

#a_horizontal_menu {
  .horizontal;
}

Instead of:

#a_horizontal_menu {
  .horizontal;
  li {
    .horizontal_items;
    a {
      .horizontal_links;
    }
  }
}

It would be nice to not be required to construct the latter code.

Finally, it would be nice to drop the curly brackets, so that the syntax is similar to Python or Sass.

Written by Arne Hassel