HTML CSS Reference/CSS Attributes and Javascript Style Properties/media
"media" Example
<html>
<head>
<style type="text/css">
@media print {
body {
font-family: Verdana;
font-size: 14pt;
}
}
</style>
</head>
<body>
<p>(body content)</p>
</body>
</html>
"media" Possible Values
Possible Values
screen for the computer screen
print for the printer
all for any device
"media" Syntax and Note
Note:
Set style rules to the various media types.
Syntax:
@media value { style sheet rules }