CSS style sheet.
Browser/User Agent Support
| IE | Mozilla | Netscape | Opera | Safari | Netscapte | 6.0+ | 1.0+ | no | 9.0+ | 1.0+ | no |
|---|
Constructors
| Constructor | IE | Mozilla | Netscape | Opera | Safari | Netscapte |
|---|---|---|---|---|---|---|
CSS style sheet. | 6.0+ | 1.0+ | no | 9.0+ | 1.0+ | no |
Properties
| Property | IE | Mozilla | Netscape | Opera | Safari | Netscapte |
|---|---|---|---|---|---|---|
Array of CSSRule objects in the style sheet. | no | 1.0+ | no | 9.0+ | 1.0+ | no |
Specifies the CSSImportRule object for imported style sheets. Specifies null if the style sheet is not imported. | 6.0+ | 1.0+ | no | 9.0+ | 1.0+ | no |
Methods
| Method | IE | Mozilla | Netscape | Opera | Safari | Netscapte |
|---|---|---|---|---|---|---|
Deletes a CSS rule at the specified position in the CSSRules array. | no | 1.0+ | no | 9.0+ | no | no |
Inserts the specified rule into the style sheet at the specified position. | no | 1.0+ | no | 9.0+ | no | no |
References
Availability
HTML DOM Level 2 | W3C
Constructor Detail
Property Detail
CSSRuleList cssRules - read only
Array of CSSRule objects in the style sheet.
-
For examples, see the quirksmode test page:
- Availability
HTML DOM Level 2 | W3C
CSSRule ownerRule - read only
Specifies the CSSImportRule object for imported style sheets. Specifies null if the style sheet is not imported.
- Availability
HTML DOM Level 2 | W3C
Method Detail
deleteRule(Number index) : void
Deletes a CSS rule at the specified position in the CSSRules array.
| Number | index | Position of the rule in the CSSRules array. |
-
For examples, see the quirksmode test page:
- See Also
- Availability
HTML DOM Level 2 | W3C
insertRule(String rule, Number index) : Object
Inserts the specified rule into the style sheet at the specified position.
| String | rule | Complete text for the CSS rule to be inserted. |
| Number | index | Position in the CSSRules array where the rule is to be inserted. |
-
For examples, see the quirksmode test page:
- See Also
- Availability
HTML DOM Level 2 | W3C
