CSSStyleDeclaration.cssText
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2015.
cssText
は CSSStyleDeclaration
インターフェイスのプロパティで、その要素のインラインスタイル宣言のみのテキストを返したり設定したりします。
スタイルシートのルールを動的に設定するためには、動的なスタイル情報の利用を参照してください。
スタイルシートのスタイルルールである CSSRule.cssText
と混同しないようにしてください。
値
文字列で、この要素のインラインスタイル宣言のテキストが入ります。
例
html
<span id="s1" style="color: red;"> Some text </span>
<script>
const elem = document.getElementById("s1");
alert(elem.style.cssText); // "color: red;"
</script>
仕様書
Specification |
---|
CSS Object Model (CSSOM) # dom-cssstyledeclaration-csstext |
ブラウザーの互換性
BCD tables only load in the browser