Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

stylesheet.insertRule

UWAGA: Tłumaczenie tej strony nie zostało zakończone.
Może być ona niekompletna lub wymagać korekty.
Chcesz pomóc? | Dokończ tłumaczenie | Sprawdź ortografię | Więcej takich stron+.

Podsumowanie

Metoda insertRule dodaje nową regułę stylu do aktualnego arkuszu stylu.

Składnia

stylesheet.insertRule(rule, index)

Parametry

  • rule jest ciągiem zawierającym regułę do dodania (selector i declaration).
  • index jest liczbą reprezentującą pozycję do dodania.

Przykład

 // push a new rule onto the top of my stylesheet
 myStyle.insertRule("#blanc { color: white }", 0); 

Uwagi

For rule sets this contains both the selector and the style declaration. For at-rules, this specifies both the at-identifier and the rule content.

Specyfikacja

insertRule

Autorzy i etykiety dokumentu

 Autorzy tej strony: teoli, AshfaqHossain, Gompka, Ptak82, Internauta1024A
 Ostatnia aktualizacja: AshfaqHossain,