I want to know what's the meaning of below code.
<div class="cls1 cls2">abcd
<div class="cls2">
adfffff
</div>
</div>
.cls1 {
background-color: yellow;
}
/*sample1
.cls1.cls2 {
color: red;
}
*/
/*sample2*/
.cls1 .cls2 {
color: red;
}
The two class of sample1 don't have an extra space. The sample2 do have an extra space.
Doese anyone know where can i find the official doc from mozilla?