Q&A
Ask and answer questions to make information more available to wider audiences.
Mila Millhouse @millhousemila   21, Apr 2023 12:00 AM
universal sector
What is the universal sector?
answers 1
 
Answer 1
Aiden Barti @aidenbarti   28, Apr 2023 10:44 AM
A universal selector is a selector that matches any element type's name instead of selecting elements of a particular type. 
Example: 

<style>
* {
  color: blue;
  font-size: 10px;
}
</style>