CSS conditional rules

The CSS conditional rules module defines CSS media and support queries, enabling you to define styles that are only applied if specific conditions are met. The conditional rules defined in this module are based on device, user-agent, and viewport capabilities. With conditional rules, you can target CSS styles based on query values or browser and device features, independent of the document being rendered.

The first CSS conditional rules were media types specifying the intended destination medium for the linked styles, for example screen or print. These were set as the value of the HTML <link> and <style> elements' media attributes or as a comma-separated list of media types within an @import statement or at-rule. The ability to conditionally apply CSS rules has been greatly expanded since the CSS 2.1 and HTML 4.01 implementations that limited conditional queries to a few media types.

CSS conditional rules now include feature queries; the @supports at-rule enables targeting CSS styles based on a user-agent's CSS capabilities. Additional conditions include which selector, font-formats, and font-techs are supported.

The CSS conditional rules module also expands @media to enable nesting at-rules, with the related CSS media queries module removing unused media types and adding many media features and conditions that can be targeted.

The CSS container queries module defines similar conditional rules, but based on an element's parent rather than the viewport.

There are plans to further extend possible queries by adding the generalized conditional rule @when and the chained conditional rule @else. These two at-rules are not yet supported.

Reference

At-rules

Note: The CSS conditional rules module introduces two at-rules that have not been implemented: @else and @when.

Functions

Note: The CSS conditional rules module introduces a CSS function that has not been implemented: media().

data types

Interfaces

Terms and glossary definitions

Guides

Using CSS feature queries

Selectively applying CSS rules after checking browser support for the specified properties and values via feature queries.

Using CSS media queries

Introduces media queries, their syntax, and the operators and media features that are used to construct media query expressions.

Supporting older browsers: feature queries

How to use feature queries to target CSS based on the browser's level of support for web features.

Browser feature detection: CSS @supports

A look at JavaScript and CSS feature detection, including CSS @supports.

Specifications

Specification
CSS Conditional Rules Module Level 5
CSS Conditional Rules Module Level 4
CSS Conditional Rules Module Level 3

See also