what is this compound CSS selector means?

css, css-selectors

Solution

Yes. When two class name are concatenated like that it means the element must have both classes for that rule to be applied

Problem

``` .btnBlue.btnLtBlue ``` Does it mean an element who has both classes? `btnBlue` AND `btnLtBlue`

Original source