I just discovered this kind of selector. I felt it was sorcery!
You put in the css two simple selectors combining them.
.One {color: red;}
.Two {color: blue}
.One.Two {color: orange;}
<h2 class="One">One</h2>
<h2 class="Two">Two</h2>
<h2 class="One Two">One Two</h2>
Merged selectors? Combined selectors? Shaken, not stirred?
I want to see the support across different browsers.
I am editing for that person that did not like my original question.
This selector apears in an example on the CSS 3 spec: https://www.w3.org/TR/css3-selectors/#class-html but it has no name. It does not apear on the general table: https://www.w3.org/TR/css3-selectors/#selectors
I am thinking if it has some name, like "and" selector, "adjacent" selector or something. When looking for compatibility for example in http://caniuse.com/ one needs to be more specific.
I am doing for example tests changing the order, .Two.One vs .One.Two by trial and error. A specific documentation would be handly.