kb/data/developer.mozilla.org/en-US/docs/Glossary/Style_origin-0.md

11 KiB

title chunk source category tags date_saved instance
Style origin - Glossary | MDN 1/3 https://developer.mozilla.org/en-US/docs/Glossary/Style_origin reference web, html, css, javascript, documentation 2026-05-05T05:46:16.013152+00:00 kb-cron

MDN HTML HTML: Markup language

HTML reference

HTML guides

Markup languages

CSS CSS: Styling language

CSS reference

CSS guides

Layout cookbook

JavaScriptJS JavaScript: Scripting language

JS reference

JS guides

Web APIs Web APIs: Programming interfaces

Web API reference

Web API guides

All All web technology

Technologies

Topics

Learn Learn web development

Frontend developer course

Learn HTML

Learn CSS

Learn JavaScript

Tools Discover our tools

About Get to know MDN better

Blog

  1. Glossary
  2. Style origin

Style origin

In 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

The user origin is the style origin containing any CSS that the user of the web browser has added. These may be from adding styles using a developer tool or from a browser extension that automatically applies custom styles to content, such as Stylus or Stylish.

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 HTML or loaded from an external stylesheet file. 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 unset or revert keywords.

In this article

See also