aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/cssstyledeclaration/csstext
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-07-18 23:58:20 +0900
committerGitHub <noreply@github.com>2021-07-18 23:58:20 +0900
commit52c12c1c3a8a92091f5caadf2cd1cc632b345d39 (patch)
tree424efe84033a7527208833211a8d89ca8210abbb /files/ja/web/api/cssstyledeclaration/csstext
parent2a6500fa9b98c7b57305b14744fea66a58724291 (diff)
downloadtranslated-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.html36
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">&lt;span id=&quot;s1&quot; style=&quot;color: red;&quot;&gt;
+ Some text
+&lt;/span&gt;
+
+&lt;script&gt;
+ var elem = document.getElementById(&quot;s1&quot;);
+ alert(elem.style.cssText); // &quot;color: red;&quot;
+&lt;/script&gt;
+</pre>
+
+<h2 id="Specifications">仕様書</h2>
+
+{{Specifications}}
+
+<h2 id="Browser_compatibility">ブラウザーの互換性</h2>
+
+<p>{{Compat}}</p>