I found on the web that I can style the HTML with multiple classes using the syntax:
.class1.class2 {
/* style here */
}
And I have a big project with css files with the syntax:
.class1 .class2 {
/* style here */
}
(there's a space between the classes)
Looks like, for me, that this code with space between the classes names are doing nothing... Maybe is an alternative to comment. Is it?