--- title: '@document' slug: Web/CSS/@document translation_of: Web/CSS/@document ---
The @document
CSS at-rule restricts the style rules contained within it based on the URL of the document. It is designed primarily for user-defined style sheets, though it can be used on author-defined style sheets, too.
@document url("https://www.example.com/") { h1 { color: green; } }
Una regla @document puede especificar una o más funciones coincidentes. Si alguna de las funciones se aplica a una URL determinada, la regla tendrá efecto en esa URL. Las funciones disponibles son:
url()
, which matches an exact URL.url-prefix()
, which matches if the document URL starts with the value provided.domain()
, which matches if the document URL is on the domain provided (or a subdomain of it).regexp()
, which matches if the document URL is matched by the regular expression provided. The expression must match the entire URL.The values provided to the url()
, url-prefix()
, and domain()
functions can be optionally enclosed by single or double quotes. The values provided to the regexp()
function must be enclosed in quotes.
Escaped values provided to the regexp()
function must additionally be escaped from the CSS. For example, a .
(period) matches any character in regular expressions. To match a literal period, you would first need to escape it using regular expression rules (to \.
), then escape that string using CSS rules (to \\.
).
Note: There is a -moz-prefixed version of this property — @-moz-document
. This has been limited to use only in user and UA sheets in Firefox 59 in Nightly and Beta — an experiment designed to mitigate potential CSS injection attacks ({{bug(1035091)}}).
{{csssyntax}}
@document url(http://www.w3.org/), url-prefix(http://www.w3.org/Style/), domain(mozilla.org), regexp("https:.*") { /* CSS rules here apply to: - The page "http://www.w3.org/" - Any page whose URL begins with "http://www.w3.org/Style/" - Any page whose URL's host is "mozilla.org" or ends with ".mozilla.org" - Any page whose URL starts with "https:" */ /* Make the above-mentioned pages really ugly */ body { color: purple; background: yellow; } }
Initially in {{SpecName('CSS3 Conditional')}}, @document
has been postponed to Level 4.
{{Compat("css.at-rules.document")}}