I want to select a specific element identified by three classes. Is this possible? For example, some div
element has three classes: alpha
, beta
and charlie
. Some other elements have one or two of these classes also, but I just want my code to affect elements with all three of them, like:
.alpha beta charlie { ... }
Is this possible?
The above example is completely random, I know it doesn't work, but I just wanted to depict what I'm planning to achieve. I'm still trying to learn CSS completely.
Thanks!