all units
Injecting globals
CSS is inherently global. Anytime you target a class or selector, an element, effectively anything with CSS you are accessing a global style scope. For instance consider:
h1 {
color: red;
}
The above selector will make every first level heading on the page red
unless CSS specifity rules dictate that a more specific selector wins out and overrides the red color.