| NamePros Regular Name: Dylan Butler Location: San Diego, CA Join Date: Jan 2006 | The key here is the media attribute on the link tag.
<link rel="stylesheet" type="text/css" href="printstyle.css" media="print" />
You use the media attribute to specify what styles a specific media will receive.
Media types:
* screen (the default), for non-paged computer screens;
* tty, for fixed-pitch character grid displays (such as the display used by Lynx);
* tv, for television-type devices with low resolution and limited scrollability;
* projection, for projectors;
* handheld, for handheld devices (characterized by a small display and limited bandwidth);
* print, for output to a printer;
* braille, for braille tactile feedback devices;
* aural, for speech synthesizers;
* all, for all devices. |