diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-07-18 23:58:20 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-18 23:58:20 +0900 |
commit | 52c12c1c3a8a92091f5caadf2cd1cc632b345d39 (patch) | |
tree | 424efe84033a7527208833211a8d89ca8210abbb /files/ja/web/api/cssstyledeclaration/csstext | |
parent | 2a6500fa9b98c7b57305b14744fea66a58724291 (diff) | |
download | translated-content-52c12c1c3a8a92091f5caadf2cd1cc632b345d39.tar.gz translated-content-52c12c1c3a8a92091f5caadf2cd1cc632b345d39.tar.bz2 translated-content-52c12c1c3a8a92091f5caadf2cd1cc632b345d39.zip |
Web/API/CSSStyleDeclaration 以下を更新 (#1482)
* Web/API/CSSStyleDeclaration/cssText を新規翻訳
2021/06/13 時点の英語版に基づき新規翻訳
* Web/API/CSSStyleDeclaration 以下を整備
Web/API/CSSStyleDeclaration 以下について、2021/07/10時点の内容に同期。未翻訳の記事については新規翻訳
Diffstat (limited to 'files/ja/web/api/cssstyledeclaration/csstext')
-rw-r--r-- | files/ja/web/api/cssstyledeclaration/csstext/index.html | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/files/ja/web/api/cssstyledeclaration/csstext/index.html b/files/ja/web/api/cssstyledeclaration/csstext/index.html new file mode 100644 index 0000000000..33cb0c7d90 --- /dev/null +++ b/files/ja/web/api/cssstyledeclaration/csstext/index.html @@ -0,0 +1,36 @@ +--- +title: CSSStyleDeclaration.cssText +slug: Web/API/CSSStyleDeclaration/cssText +tags: + - API + - CSSOM + - NeedsSpecTable + - Reference +browser-compat: api.CSSStyleDeclaration.cssText +translation_of: Web/API/CSSStyleDeclaration/cssText +--- +<div>{{APIRef("CSSOM")}}</div> + +<p><span class="seoSummary"><code><strong>cssText</strong></code> は {{domxref("CSSStyleDeclaration")}} インターフェイスのプロパティで、その要素の<strong>インライン</strong>スタイル宣言のみのテキストを返したり設定したりします。</span><strong>スタイルシート</strong>の規則を動的に設定するためには、<a href="/ja/docs/Web/API/CSS_Object_Model/Using_dynamic_styling_information">動的なスタイル情報の利用</a>を参照してください。</p> + +<p>スタイルシートのスタイル規則である {{domxref("CSSRule.cssText")}} と混同しないようにしてください。</p> + +<h2 id="Example">例</h2> + +<pre class="brush: html"><span id="s1" style="color: red;"> + Some text +</span> + +<script> + var elem = document.getElementById("s1"); + alert(elem.style.cssText); // "color: red;" +</script> +</pre> + +<h2 id="Specifications">仕様書</h2> + +{{Specifications}} + +<h2 id="Browser_compatibility">ブラウザーの互換性</h2> + +<p>{{Compat}}</p> |