Contents
Certain CSS properties are only designed for certain media (e.g., the 'cue-before' property for aural style sheets). On occasion, however, style sheets for different media types may share a property, but require different values for that property. For example, the 'font-size' property is useful both for screen and print media. However, the two media are different enough to require different values for the common property; a document will typically need a larger font on a computer screen than on paper. Experience also shows that sans serif fonts are easier to read on screen, while fonts with serifs are easier to read on paper. For these reasons, it is necessary to express that a style sheet -- or a section of a style sheet -- applies to certain media types.
Below we describe how authors may specify different style sheets for different media (all of which participate in the cascade).
There are currently two ways to specify media dependencies for style sheets:
@import url(loudvoice.css) speech; @media print { /* style sheet for print goes here */ }
<HTML> <HEAD> <TITLE>Link to a target medium</TITLE> <LINK rel="stylesheet" type="text/css" media="print" href="foo.css"> </HEAD> <BODY> <P>The body... </BODY> </HTML>
Since these two examples specify the same media type, they are semantically equivalent.
An @media rule lists the media types (separated by commas) affected by a set of rules delimited by curly braces.
The @media construct allows style sheet rules for various media in the same style sheet:
@media print { BODY { font-size: 10pt } } @media screen { BODY { font-size: 12pt } } @media screen, print { BODY { line-height: 1.2 } }
So that user agents can avoid retrieving resources for unsupported media types, authors may specify media-dependent @import rules. These conditional imports specify comma-separated media types after the URI.
The following rules have the same effect as if the imported style sheet were wrapped in an @media rule for the same media, but it may save the UA a fruitless download.
@import url(fineprint.css) print; @import url(bluish.css) projection, tv;
In the absence of any media types, the import is unconditional. Specifying 'all' for the medium has the same effect.
Due to rapidly changing technologies, CSS2 does not specify a definitive list of media types that may be values for @media. However, user agents that elect to support the devices in the following list must recognize the associated media type:
Media type names are case-insensitive.
Each CSS property definition specifies the media types for which the property must be implemented by a conforming user agent. Since properties generally apply to several media, the "Applies to media" section of each property definition indicates a media group rather than a list of media types. A property applies to all media types that belong to a given media group.
CSS2 defines the following media groups:
The following table shows the relationships between media groups and media types:
Media Groups Media Types | continuous/paged | visual/aural/tactile | character grid |
---|---|---|---|
all | |||
aural | continuous | aural | N/A |
braille | continuous | tactile | grid |
emboss | paged | tactile | grid |
handheld | visual | ||
paged | visual | ||
projection | paged | visual | |
screen | continuous | visual | |
tty | continuous | visual | grid |
tv | visual, aural |