Package | dom.style.css |
Class | public class CSSImportRule |
Inheritance | CSSImportRule CSSRule Object |
Introduced in: | DOM 2 Core |
See also
Property | Defined By | ||
---|---|---|---|
DOM 2 Style cssText : DOMString [read-only]
The parsable textual representation of the rule. | CSSRule | ||
DOM 2 Style href : DOMString [read-only]
The location of the style sheet to be imported. | CSSImportRule | ||
DOM 2 Style media : MediaList [read-only]
A list of media types for which this style sheet may be used. | CSSImportRule | ||
DOM 2 Style parentRule : CSSRule [read-only]
If this rule is contained inside another rule (e.g. | CSSRule | ||
DOM 2 Style parentStyleSheet : CSSStyleSheet [read-only]
The style sheet that contains this rule. | CSSRule | ||
DOM 2 Style styleSheet : CSSStyleSheet [read-only]
The style sheet referred to by this rule, if it has been loaded. | CSSImportRule | ||
DOM 2 Style type : Number [read-only]
The type of the rule, as defined above. | CSSRule |
DOM 2 Style href | property |
href:DOMString
[read-only] Introduced in: | DOM 2 Core |
The location of the style sheet to be imported. The attribute will not contain the "url(...)" specifier around the URI.
public function get href():DOMString
See also
DOM 2 Style media | property |
media:MediaList
[read-only] Introduced in: | DOM 2 Core |
A list of media types for which this style sheet may be used.
public function get media():MediaList
See also
DOM 2 Style styleSheet | property |
styleSheet:CSSStyleSheet
[read-only] Introduced in: | DOM 2 Core |
The style sheet referred to by this rule, if it has been loaded. The value of this attribute is null if the style sheet has not yet been loaded or if it will not be loaded.
public function get styleSheet():CSSStyleSheet
See also