I have been reading a bit on compressed and uncompressed CSS files, but I haven't seen anyone talk about specific formatting in a CSS file.
Should you group things together like this:
.class1,
.class2,
.class3, .... {
color: [color];
background: [image/color];
....
}
Or is it better to keep them seperated, like this:
.class1 {
color: [same color];
....
}
.class2 {
color: [same color];
....
}
Does this affect load time in any way? Is it just about personal preference?