CSS is a language for describing the rendering of structured documents (such as HTML and XML) on screen, on paper, in speech, etc. This module contains the features of CSS for conditional processing of parts of style sheets, conditioned on capabilities of the processor or the document the style sheet is being applied to. It includes and extends the functionality of CSS level 2 [[!CSS21]], which builds on CSS level 1 [[CSS1]]. The main extensions compared to level 2 are allowing nesting of certain at-rules inside '@media', the addition of the '@supports' and '@document' rules for conditional processing.
The following features are at risk:
This section is not normative.
[[!CSS21]] defines one type of conditional group rule, the
'@media' rule, and allows only rulesets (not other @-rules)
inside of it. The '@media' rule provides the ability to
have media-specific style sheets, which is also provided by style
sheet linking features such as '@import' and
<link>. The restrictions on the contents of
'@media' rules made them less useful; they have forced authors
using CSS features involving @-rules in media-specific style sheets to
use separate style sheets for each medium.
This specification extends the rules for the contents of conditional group rules to allow other @-rules, which enables authors to combine CSS features involving @-rules with media specific style sheets within a single style sheet.
This specification also defines additional types of conditional group rules, '@supports' and '@document', to address author and user requirements.
The '@supports' rule allows CSS to be conditioned on implementation support for CSS properties and values. This rule makes it much easier for authors to use new CSS features and provide good fallback for implementations that do not support those features. This is particularly important for CSS features that provide new layout mechanisms, and for other cases where a set of related styles needs to be conditioned on property support.
The '@document' rule allows CSS to be conditioned on the page to which the style sheet is being applied. This allows users to apply styles to a particular page or group of pages, which greatly increases the power of user style sheets.
This module replaces and extends the '@media' rule feature defined in [[!CSS21]] section 7.2.1 and incorporates the modifications previously made non-normatively by [[!MEDIAQ]] section 1.
Its current definition depends on @-rules defined in [[!CSS3FONT]] and [[!CSS3-ANIMATIONS]], but that dependency is only on the assumption that those modules will advance ahead of this one. If this module advances faster, then the dependency will be reversed.
Conformance requirements are expressed with a combination of descriptive assertions and RFC 2119 terminology. The key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”, “SHOULD”, “SHOULD NOT”, “RECOMMENDED”, “MAY”, and “OPTIONAL” in the normative parts of this document are to be interpreted as described in RFC 2119. However, for readability, these words do not appear in all uppercase letters in this specification.
All of the text of this specification is normative except sections explicitly marked as non-normative, examples, and notes. [[!RFC2119]]
Examples in this specification are introduced with the words “for example”
or are set apart from the normative text with
class="example", like this:
This is an example of an informative example.
Informative notes begin with the word “Note” and are set apart from the
normative text with class="note", like this:
Note, this is an informative note.
This specification defines some CSS @-rules, called conditional group rules, that associate a condition with a group of other CSS rules. These different rules allow testing different types of conditions, but share common behavior for how their contents are used when the condition is true and when the condition is false.
For example, this rule:
@media print {
#navigation { display: none }
}
causes a particular CSS rule (making elements with ID "navigation" be display:none) apply only when the style sheet is used for a print medium. Likewise, this CSS rule:
@document url("http://www.example.com/") {
#example1 { display: none }
}
does the same type of conditional application, but using a different
condition: whether the style sheet is being applied to the page
http://www.example.com/.
Each conditional group rule has a condition, which at any time evaluates to true or false. When the condition is true, CSS processors must apply the rules inside the group rule as though they were at the group rule's location; when the condition is false, CSS processors must not apply any of rules inside the group rule. The current state of the condition does not affect the CSS object model, in which the contents of the group rule always remain within the group rule.
This means that when multiple conditional group rules are nested, a rule inside of both of them applies only when all of the rules' conditions are true.
@media print { // rule (1)
#navigation { display: none }
@media (max-width: 12cm) { // rule (2)
.note { float: none }
}
}
the condition of the rule marked (1) is true for print media, and the
condition of the rule marked (2) is true when the width of the display
area (which for print media is the page box) is less than or equal to
12cm. Thus the rule ''#navigation { display: none }'' applies
whenever this style sheet is applied to print media, and the rule
''.note { float: none }'' is applied only when the style sheet
is applied to print media and the width of the page box is less
than or equal to 12 centimeters.When the condition for a conditional group rule changes, CSS processors must reflect that the rules now apply or no longer apply, except for properties whose definitions define effects of computed values that persist past the lifetime of that value (such as for some properties in [[CSS3-TRANSITIONS]] and [[!CSS3-ANIMATIONS]]).
There is also likely demand for using these conditions with '@import'. We should see if we can come up with sensible syntax for that, perhaps functional notation at the end of the '@import' rule.
The syntax of each conditional group rule consists of some syntax specific to the type of rule followed by a group rule body, which is a block (pair of braces) containing a sequence of rules.
A group rule body is allowed to contain rulesets and any @-rules that are allowed at the top level of a style sheet before and after a ruleset. This means that @-rules that must occur at the beginning of the style sheet, such as '@charset', '@import', and '@namespace' are not allowed inside of conditional group rules. Conditional group rules can be nested.
In terms of the grammar, this specification defines the following productions for use in the grammar of conditional group rules:
nested_statement
: ruleset | media | page | font_face_rule | keyframes-rule |
supports_rule | document_rule
;
group_rule_body
: '{' S* nested_statement* '}' S*
;
in which all the productions are defined in that grammar with the
exception of font_face_rule not
defined in [[!CSS3FONT]], keyframes-rule shouldn't have dash? defined in
[[!CSS3-ANIMATIONS]], and media, supports_rule
and document_rule defined in this specification.
In general, future CSS specifications that add new @-rules that are
not forbidden to occur after some other types of rules should modify
this nested_statement production to keep the grammar
accurate.
Style sheets must not use rules other than the allowed ones inside conditional group rules.
Implementations must ignore rules that are not allowed within a group rule.
Define error handling rules for unknown things.
The '@media' rule is a conditional group rule whose condition is a media query. It consists of the at-keyword '@media' followed by a (possibly empty) media query (as defined in [[!MEDIAQ]]), followed by a group rule body. The condition of the rule is the result of the media query.
This '@media' rule:
@media print, (max-width: 600px) {
#extra_navigation { display: none }
}
has the condition ''print, (max-width: 600px)'', which is true for print media and for devices whose width is at most 600px. When either of these is true, the condition of the rule is true, and the rule ''#extra_navigation { display: none }'' is applied.
In terms of the grammar, this specification extends the
media production in the
Grammar of CSS 2.1
([[!CSS21]], Appendix G) into:
media : MEDIA_SYM S+ media_query_list group_rule_body ;
where the group_rule_body production is defined in this
specification, the media_query_list production is defined
in [[!MEDIAQ]], and the others are defined in the Grammar of CSS 2.1
([[!CSS21]], Appendix G).
This changes the S* in CSS 2.1 into
S+. Is that correct?
The '@supports' rule is a conditional group rule whose condition tests whether the user agent supports CSS property:value pairs. Authors can use it to write style sheets that use new features when available but degrade gracefully when those features are not supported. CSS has existing mechanisms for graceful degradation, such as ignoring unsupported properties or values, but these are not always sufficient when large groups of styles need to be tied to the support for certain features, as is the case for use of new layout system features.
The syntax of the condition in the '@supports' rule is slightly more complicated than for the other conditional group rules (though has some similarities to media queries) since:
Therefore, the syntax of the '@supports' rule allows testing for property:value pairs, and arbitrary conjunctions (and), disjunctions (or), and negations (not) of them.
This extends the lexical scanner in the Grammar of CSS 2.1 ([[!CSS21]], Appendix G) by adding:
@{S}{U}{P}{P}{O}{R}{T}{S} {return SUPPORTS_SYM;}
and the grammar by adding
supports_rule
: SUPPORTS_SYM S+ supports_condition group_rule_body
;
supports_condition
: supports_negation | supports_conjunction | supports_disjunction |
supports_declaration_condition
;
supports_negation
: 'not' S* supports_condition_in_parens
;
supports_conjunction
: supports_condition_in_parens ( 'and' S* supports_condition_in_parens )+
;
supports_disjunction
: supports_condition_in_parens ( 'or' S* supports_condition_in_parens )+
;
supports_condition_in_parens
: ( '(' supports_condition ')' S* ) | supports_declaration_condition
;
supports_declaration_condition
: '(' S* declaration ')' S*
;
The rules for evaluating the condition in each of the above grammar terms are:
and the condition of the '@supports' rule is the
condition thus described for the supports_rule term.
For example, the following rule
@supports ( display: flexbox ) {
body, #navigation, #content { display: flexbox; }
#navigation { background: blue; color: white; }
#article { background: white; color: black; }
}
applies the rules inside the '@supports' rule only when ''display: flexbox'' is supported.
The following example shows an additional '@supports' rule that can be used to provide an alternative for when ''display: flexbox'' is not supported:
@supports not ( display: flexbox ) {
body { width: 100%; height: 100%; background: white; color: black; }
#navigation { width: 25%; }
#article { width: 75%; }
}
Note that the 'width' declarations may be harmful to the flexbox-based layout, so it is important that they be present only in the non-flexbox styles.
The following example checks for support for the 'box-shadow' property, including checking for support for vendor-prefixed versions of it. When the support is present, it specifies both 'box-shadow' (with the prefixed versions) and 'color' in a way what would cause the text to become invisible were 'box-shadow' not supported.
@supports ( box-shadow: 2px 2px 2px black ) or
( -moz-box-shadow: 2px 2px 2px black ) or
( -webkit-box-shadow: 2px 2px 2px black ) or
( -o-box-shadow: 2px 2px 2px black ) {
.outline {
color: white;
box-shadow: 2px 2px 2px black;
-moz-box-shadow: 2px 2px 2px black;
-webkit-box-shadow: 2px 2px 2px black;
-o-box-shadow: 2px 2px 2px black;
}
}To avoid confusion between and and or, the syntax requires that both and and or be specified explicitly (rather than, say, using commas or spaces for one of them). Likewise, to avoid confusion caused by precedence rules, the syntax does not allow and, or, and not operators to be mixed without a layer of parentheses. Add examples.
The '@document' rule is a conditional group rule whose condition depends on the URL of the document being styled. This allows style sheets, particularly user style sheets, to have styles that only apply to a set of pages rather than to all pages using the style sheet.
Given that this @-rule is intended primarily for user style sheets, what should this specification say about its use in author style sheets? Should it be forbidden? Should use instead be discouraged? Or should this specification remain neutral on the topic?
The '@document' rule's condition is written as a comma-separated list of URL matching functions, and the condition evaluates to true whenever any one of those functions evaluates to true. The following URL matching functions are permitted:
The 'url()' function is the exact url matching function. It evaluates to true whenever the URL of the document being styled is exactly the URL given.
The 'url()' function, since it is a core syntax element in CSS, is allowed (subject to different character limitations and thus escaping requirements) to contain an unquoted value (in addition to the string values that are allowed as arguments for all four functions).
For example, this rule:
@document url("http://www.w3.org/Style/CSS/") {
#summary { background: yellow; color: black}
}
styles the summary element on the page
http://www.w3.org/Style/CSS/, but not on any other
pages.
The 'url-prefix()' function is the url prefix matching function. It evaluates to true whenever the URL of the document being styled has the argument to the function as an initial substring (which is true when the two strings are equal). When the argument is the empty string, it evaluates to true for all documents.
For example, this rule:
@document url-prefix("http://www.w3.org/Style/CSS/") {
#summary { background: yellow; color: black}
}
styles the summary element on the page
http://www.w3.org/Style/CSS/ and on the page
http://www.w3.org/Style/CSS/Test, but it does not
affect the page http://www.w3.org/ or the page
http://www.example.com/Style/CSS/.
The 'domain()' function is the domain matching function. It evaluates to true whenever the URL of the page has a host subcomponent (as defined in [[!URI]]) and that host subcomponent is exactly the argument to the 'domain()' function or a final substring of the host component is a period (U+002E) immediately followed by the argument to the 'domain()' function.
For example, this rule:
@document domain("w3.org") {
body { font-size: 16px ! important }
}
changes the font size of the body element for pages such as
http://www.w3.org/Style/CSS/ and
http://w3.org/Style/CSS/ and
http://lists.w3.org/Archives/Public/www-style/
but it does not affect the page
http://www.example.com/Style/CSS/.
Write me
This definition intentionally matches the behavior
of the pattern
attribute on the input element
in [[HTML5]].
What form of normalization is done on URLs and domains before matching?
Need to define what URL we care about, perhaps in terms of browsing context. It should apply to the URL of an iframe/object/embed/img; it should probably not apply to the URL of an svg:use.
Implementations must treat any unknown URL matching functions as a syntax error, and thus ignore the '@document' rule. Should we instead have more complicated error handling rules?
This extends the lexical scanner in the Grammar of CSS 2.1 ([[!CSS21]], Appendix G) by adding:
@{D}{O}{C}{U}{M}{E}{N}{T} {return DOCUMENT_SYM;}
and the grammar by adding
document_rule : DOCUMENT_SYM S+ url_match_fn ( "," S* url_match_fn )* group_rule_body ; url_match_fn : URI | FUNCTION ;
Conformance to the CSS Conditional Rules Module is defined for three conformance classes:
A style sheet is conformant to CSS TEMPLATE Module if all of its declarations that use properties defined in this module have values that are valid according to the generic CSS grammar and the individual grammars of each property as given in this module.
A renderer is conformant to CSS TEMPLATE Module if, in addition to interpreting the style sheet as defined by the appropriate specifications, it supports all the properties defined by CSS TEMPLATE Module by parsing them correctly and rendering the document accordingly. However, the inability of a UA to correctly render a document due to limitations of the device does not make the UA non-conformant. (For example, a UA is not required to render color on a monochrome monitor.)
An authoring tool is conformant to CSS TEMPLATE Module if it writes syntactically correct style sheets, according to the generic CSS grammar and the individual grammars of each property in this module.
So that authors can exploit the forward-compatible parsing rules to assign fallback values, CSS renderers must treat as invalid (and ignore as appropriate) any at-rules, properties, property values, keywords, and other syntactic constructs for which they have no usable level of support. In particular, user agents must not selectively ignore unsupported component values and honor supported values in a single multi-value property declaration: if any value is considered invalid (as unsupported values must be), CSS requires that the entire declaration be ignored.
To avoid clashes with future CSS features, the CSS specifications reserve a prefixed syntax for proprietary property and value extensions to CSS. The CSS Working Group recommends that experimental implementations of features in CSS Working Drafts also use vendor-prefixed property or value names. This avoids any incompatibilities with future changes in the draft. Once a specification reaches the Candidate Recommendation stage, implementors should implement the non-prefixed syntax for any feature they consider to be correctly implemented according to spec.
For this specification to be advanced to Proposed Recommendation, there must be at least two independent, interoperable implementations of each feature. Each feature may be implemented by a different set of products, there is no requirement that all features be implemented by a single product. For the purposes of this criterion, we define the following terms:
The specification will remain Candidate Recommendation for at least six months.
In order to allow these new @-rules in CSS style sheets, this
specification modifies the stylesheet production in the Appendix G grammar of
[[!CSS21]] by replacing the media production defined in
[[!CSS21]] with the media production defined in this one,
and additionally inserting | supports_rule | document_rule
alongside ruleset | media | page.
Thanks to the ideas and feedback from Tantek Çelik, Elika Etemad, Pascal Germroth, Björn Höhrmann, Alex Mogilevsky, Chris Moschini, Ben Ward, Zack Weinberg, Boris Zbarsky, and all the rest of the www-style community.