HTML CSS Reference/CSS Attributes and Javascript Style Properties/media — различия между версиями

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

Текущая версия на 11:19, 26 мая 2010

"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>