The drumbeat of writing terse CSS code has been beaten into my head for years. For example:
Do this: .foo,.bar{ color:#f00; }
Not this: .foo{ color:#f00; } .bar{ color:#f00; }
With GZIP compression isn't it irrelevant how I write the above CSS? Since GZIP will create a dynamic library with color:#f00 as a single instance and use pointers to its multiple uses. I want to know because it is more convenient to repeat style definitions versus searching for an identical declaration.