JavaScript Reference/Javascript Methods/addPageRule

Материал из Web эксперт
Версия от 11:22, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

"addPageRule()" is applied to

   <source lang="javascript">

+----------------+--------------------------------------------------------------+ | Applied_To |styleSheet | +----------------+--------------------------------------------------------------+

     </source>
   
  


"addPageRule()" Syntax, Parameters and Note

   <source lang="javascript">

Note: Adds a new @page rule to a styleSheet object.

Syntax:

document.styleSheets[index].addPageRule(param1, param2, param3)

Parameters:

   param1   Required; the style selector.
   param2   Required; the style declaration.
   param3   Optional; the index of the @page rule. 
            If the index is omitted, the @page rule is added to the end.
   
     
     </source>