I have a set of classes underneath the of the HTML document which all share the same set of class names. These are all date pickers but the one that is currently on screen lacks a class name that the others have which is how I need to select it.
How do I write my CSS Selector so that it picks the that has two class names but not the third?
I.E.:
<body>
<div class="class-one class-two class-three"></div>
<div class="class-one class-two class-three"></div>
<div class="class-one class-two class-three"></div>
<div class="class-one class-two class-three"></div>
<div class="class-one class-two"></div>
</body>
I want a selector that picks the last div here. So I want it to say that it has "class-one" and "class-two" class names but does NOT have "class-three"?