Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
Interface CSSStyleSheet
[go: Go Back, main page]

Interface CSSStyleSheet

継承元:
stylesheets::StyleSheet
プロパティ:
cssRules, ownerRule
メソッド:
deleteRule, insertRule

CSSStyleSheet インターフェイスは CSS スタイルシート(つまり ContentType が "text/css" であるスタイルシート) を表す、具体的なインターフェイスである。

プロパティ:

メソッド:

IDL 定義:

// Introduced in DOM Level 2:
interface CSSStyleSheet : stylesheets::StyleSheet {
  readonly attribute CSSRule          ownerRule;
  readonly attribute CSSRuleList      cssRules;
  unsigned long      insertRule(in DOMString rule,
                                in unsigned long index)
                                        raises(DOMException);
  void               deleteRule(in unsigned long index)
                                        raises(DOMException);
};


Issued: / Revised: / All rights reserved. © 2002-2016 TAKI