I want to select elemtents matches two classes using span:
.class1 *AND* .class2 span div.class3:nth-child(even)
The question ist similar to this one: CSS "and" selector - Can I select elements that have multiple classes?
but I do not use just classes, but also span elements, so this do not work (I think it searches for elements containing the right expression and belong to class1 AND class2.):
.class1.class2 span div.class3:nth-child(even)
Thanks in advance for your help