HTML/CSS/CSS Attributes and Javascript Style Properties/page

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

"page" Example

   <source lang="html4strict">
   

<html> <head> <style type="text/css"> @page:first {

   font-family:Times New Roman; 
   font-size:18pt; 
   color:blue; 

} @page:left {

   font-family: Verdana; 
   font-size: 14pt; 

} @page:right {

   font-family: Verdana; 
   font-size: 14pt; 

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

(body content)

</body> </html>


     </source>