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.

CSSRule.cssText

要素スタイル CSSStyleDeclaration.cssText と混同しないでください。

概要

cssText は、CSSStyleSheet スタイル規則の実際のテキストを返します。

補足: 仕様に明記 されたとおり、機能暗黙的に 変更するだけで、直接設定することはできません。これに設定しようとしても、警告もエラーもなく、絶対に何も起こりません。さらに、設定可能なサブプロパティもありません。そのため、これを変更するには、スタイルシートの cssRules[index] プロパティおよび .selectorText.style (または、そのサブプロパティ) を使用してください。詳細は、動的なスタイル情報の利用 を参照してください。

構文

string = cssRule.cssText

<style>
body { background-color: darkblue; }
</style>
<script>
  var stylesheet = document.styleSheets[0];
  alert(stylesheet.cssRules[0].cssText); // body { background-color: darkblue; }
</script>

仕様書

ドキュメントのタグと貢献者

 このページの貢献者: Marsf, jsx, ethertank
 最終更新者: Marsf,