How to add a class to an existing selector as an additional selector

What is the format to add a new class to an existing selector as an additional selector?

To add multiple selectors,just separate your class selectors by a comma

.bold , .class{
 property: value;
}

First tried using space. did not work. now seperated them with a comma. now it works.
thanks!

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.