blob: e8b9d228aedd02acfba0529d265588dc95344902 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
---
title: CSSStyleDeclaration.cssText
slug: Web/API/CSSStyleDeclaration/cssText
translation_of: Web/API/CSSStyleDeclaration/cssText
---
<p>A ne pas confondre avec la règle de style de feuille de style {{domxref("CSSRule.cssText")}}.</p>
<div>{{APIRef("CSSOM") }}</div>
<p><strong>cssText</strong> retourne ou définit seulement le texte de la déclaration de style <strong>inline</strong> de l'élément. Pour pouvoir définir dynamiquement une règle d'une <strong>stylesheet</strong>, voir <a href="/fr-FR/docs/DOM/Using_dynamic_styling_information">Utilisation d'informations de mise en forme dynamiques.</a></p>
<h2 id="Syntax">Syntaxe</h2>
<pre class="brush: js"><em>chaine</em> = elem.style.cssText
</pre>
<h2 id="Example">Exemple</h2>
<pre class="brush: html"><code><span id="s1" style="</code>color: red;"<code>>
Du texte
</span></code>
<script>
var elem = document.getElementById("s1");
alert(elem.style.cssText); // "color: red;"
</script>
</pre>
<h2 id="Specification">Spécification</h2>
<ul>
<li><a href="http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-CSSStyleDeclaration">DOM Level 2 Style CSS - Interface CSSStyleDeclaration (introduced in DOM Level 2)</a></li>
</ul>
|