CSS: Spaces vs Commas

Rating: 2

Spaces between selectors means that all of the selectors have to be applied:

.class1 .class2 {}

Commas between selectors means that any of the selectors can be applied:

.class1, .class2 {}