HTML CSS Reference/CSS Attributes and Javascript Style Properties/media

Материал из Web эксперт
Перейти к: навигация, поиск

"media" Example

   <source lang="html4strict">
   

<html> <head> <style type="text/css"> @media print {

  body { 
     font-family: Verdana; 
     font-size: 14pt; 
  }

} </style> </head> <body>

(body content)

</body> </html>


     </source>
   
  


"media" Possible Values

   <source lang="html4strict">

Possible Values

screen for the computer screen print for the printer all for any device


     </source>
   
  


"media" Syntax and Note

   <source lang="html4strict">

Note: Set style rules to the various media types.

Syntax:

@media value { style sheet rules }


     </source>