Interface CSSStyleRule

継承元:
CSSRule
プロパティ:
selectorText, style
メソッド:

CSSStyleRule インターフェイスは、CSS スタイルシートの単一の 規則集合(rule set) を表す。

プロパティ:

IDL 定義:

// Introduced in DOM Level 2:
interface CSSStyleRule : CSSRule {
           attribute DOMString        selectorText;
                                        // raises(DOMException) on setting
  readonly attribute CSSStyleDeclaration  style;
};


TAKI <oz-07ams@mvh.biglobe.ne.jp>