Style origins: browser, author and inline styles
Not all rules begin with the same priority.
Browsers apply default user-agent styles before your own CSS enters the picture. Your author styles usually override those defaults.
Within author styles, external files and internal `` blocks compete through source order. Inline styles start with greater weight in the normal cascade, and `!important` changes the priority even further.
- User-agent styles are the browser defaults.
- Author styles include external and internal CSS.
- Inline styles live in the HTML `style` attribute.