Can someone please explain the different variations of Css selectors and what they mean. I do understand the basic ones like class, id and tag selectors but what’s the difference between say I have two classes “a” and “b”, what does these selectors mean.
. a .b
.a + .b
.a, .b
.a>.b
There’s still a bunch of others like the ones using “”. (The MDN reference on this topic is not really broad).
Thanks