To me OOCSS is one of the best because it's content-oriented. It's also well documented with lot of examples.
However most of the CSS framework are wrong in the way they adress the grid matter. Adding classes to define a specific element width is as wrong as giving it the class "red" to write later in your css
.red{ color: #FF0000; }
It's quite like writing your style inline in the DOM.
It goes the same with adding column's size classes :
<div class="grid_6">blah</div>
When it will come the time to redesign or just change a block size, you will have to change all elements classes in your DOM, but you should be able to deal with that simply from your CSS only. OOCSS doesn't bring a radical solution to this problem but by adressing this with space fractions (like .size2of3) it makes that your changes will affect automatically and gracefully all nested elements.
For me the final solution to this matter came SASS and LESS. If you haven't already, you should definitely have a look at those one. They work like CleverCSS listed here by @speckyboy and reduce the amount of code necessary to write your stylesheet.
These will allow you to use a CSS framework a nicer way by simply extending these sizing class in your CSS definitions instead of adding them everywhere in your DOM.
For exemple :
With Less
#sidebar {
.size1of2; /* extend the sizing class */
...
}
With Sass
#sidebar
@extend .size1of2;
...
You'll also find a couple of framework based on Sass :