What is the difference between the selectors “.class.class” and “.class .class”?

.class .class matches any elements of class .class that are descendants of another element with the class .class.

.class.class matches any element with both classes.

Leave a Comment