Let’s say you want to use 2 or more classes for a div. Then you should use these classes inside the class attribute, separated by whitespace:
<div class="myFirstClass mySecondClass"></div>
To target elements that contain all of the specified classes, use this CSS selector (no space) in your CSS file:
.myFirstClass.mySecondClass {}