Basic CSS selectors for your toolbox
Here are some ways of selecting elements. This is not a comprehensive list. Good to keep in your back pocket.
Universal Selector
Selects everything. All elements will get this colour black.
* {
color: black;
}
Element Selector
Selects all of an ...
davidbell.hashnode.dev6 min read