They always told me to consolidate repeated properties in CSS into one rule, like the example below (please forgive the poor example).
I typically see this:
.button, .list, .items { color: #444; }
Having multiple rules like this can create a lot of clutter, right?
In tutorials and examples I've only seen this approach:
.someColor { color: #444; }
Then in the CSS, you just add another class '.sameColor'. (div class="button someColor")
I haven't seen this before, but it seems like it would result in less clutter in your CSS. Do you think this is okay? Or do you believe it might lead to more clutter in your HTML instead?