CSS2 Media Types
Media Types allow you to specify how documents will be presented
in different media. The document can be displayed differently on the screen, on
the paper, with an aural browser, etc.
Media Types
Some CSS properties are only designed for a certain media. For example the
"voice-family" property is designed for aural user agents. Some other
properties can be used for different media types. For example, the
"font-size" property can be used for both screen and print media, but
perhaps with different values. A document usually needs a larger font-size on a
screen than on paper, and sans-serif fonts are easier to read on the screen, while
serif fonts are easier to read on paper.
The @media Rule
The @media rule allows different style rules for different media in the same style
sheet.
The style in the example below tells the browser to display a 14 pixels
Verdana font on the screen. But if the page is printed, it will be in a 10
pixels Times font. Notice that the font-weight is set to bold, both on screen
and on paper:
<html>
<head>
<style>
@media screen
{
p.test {font-family:verdana,sans-serif; font-size:14px}
}
@media print
{
p.test {font-family:times,serif; font-size:10px}
}
@media screen,print
{
p.test {font-weight:bold}
}
</style>
</head>
<body>
....
</body>
</html>
|
See it yourself ! If you are using Mozilla/Firefox or IE 5+ and print this page, you will see
that the
paragraph under "Media Types" will be displayed in another font, and
have a
smaller font size than the rest of the text.
Different Media Types
Note: The media type names are not case-sensitive.
| Media Type |
Description |
| all |
Used for all media type devices |
| aural |
Used for speech and sound synthesizers |
| braille |
Used for braille tactile feedback devices |
| embossed |
Used for paged braille printers |
| handheld |
Used for small or handheld devices |
| print |
Used for printers |
| projection |
Used for projected presentations, like slides |
| screen |
Used for computer screens |
| tty |
Used for media using a fixed-pitch character grid, like teletypes and terminals |
| tv |
Used for television-type devices |
The Ektron Intranet
lets you do everything you need to do on your corporate intranet and everything you want to do... all with just one application.
What can you do with the Ektron Intranet? |

|
Navigate through content, documents, assets, colleagues and workgroups quickly and intuitively with enterprise search |

|
Communicate with friends and colleagues with forums, message boards and corporate blogging using the new Social Networking Platform |

|
Promote collaboration among coworkers in your organization through project workspaces where others can efficiently find information and work together |

|
Personalize your company profile by bookmarking and organizing favorite content, uploading assets, posting photos, blogging, and more |

|
Interact with features like tagging, flagging, wikis and ratings found in the Web 2.0 Toolbox |
 |
Author/edit content, manage navigation, menus, audit trails, workflow and approvals with the best in breed Content Management |
|
|
|
|
See why there are 20,000+ Ektron integrations worldwide. Request an
INSTANT DEMO or download a
FREE TRIAL today. |
|