Style origin
{{GlossarySidebar}}
In {{Glossary("CSS")}}
, there are three categories of sources for style changes. These categories are called style origins. They are the user agent origin, user origin, and the author origin.
- User-agent origin
- : The user agent origin is the style origin comprised of the default styles used by the user’s web browser. If no other styles are applied to content, the user agent origin’s styles are used while rendering elements.
- User origin
- Author origin
- : The author origin is the style origin which contains all of the styles which are part of the document, whether embedded within the
{{Glossary("HTML")}}
or loaded from an external stylesheet file.
- : The author origin is the style origin which contains all of the styles which are part of the document, whether embedded within the
The style origins are used to determine where to stop rolling back (or backtracking through) the cascade of styles that have been applied to an element when removing styles, such as when using the {{cssxref("unset")}}
or {{cssxref("revert")}}
keywords.