If you use Inspect in your browser, you can figure where each component and part of a component belongs.
Yea I know that part, I’ve done a good amount of CSS. I just mean things involving *, : and nth(#) childs. Random stuff like that
2 Likes
*
would be a wildcard to encompass multiple classes with a similar name but a different ending. class1, class2, class3 could be summed up as class*.
Nth child is like an array index. If you have multiple divs in the same hierarchy level then you can specify an nth index to target a specific one.
2 Likes