aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/document
diff options
context:
space:
mode:
authorMDN <actions@users.noreply.github.com>2021-03-10 16:18:46 +0000
committerMDN <actions@users.noreply.github.com>2021-03-10 16:18:46 +0000
commit785c0b7c8adc9e73cfd07817009c4437255c9398 (patch)
treedf9c9cef2d0122f1227098f11d29a2141b014839 /files/fr/web/api/document
parenta347d81327250fad25cb1990f012cab05c3cfa4c (diff)
downloadtranslated-content-785c0b7c8adc9e73cfd07817009c4437255c9398.tar.gz
translated-content-785c0b7c8adc9e73cfd07817009c4437255c9398.tar.bz2
translated-content-785c0b7c8adc9e73cfd07817009c4437255c9398.zip
[CRON] sync translated content
Diffstat (limited to 'files/fr/web/api/document')
-rw-r--r--files/fr/web/api/document/stylesheets/index.html57
1 files changed, 57 insertions, 0 deletions
diff --git a/files/fr/web/api/document/stylesheets/index.html b/files/fr/web/api/document/stylesheets/index.html
new file mode 100644
index 0000000000..2965e4eb43
--- /dev/null
+++ b/files/fr/web/api/document/stylesheets/index.html
@@ -0,0 +1,57 @@
+---
+title: Document.styleSheets
+slug: Web/API/Document/styleSheets
+translation_of: Web/API/DocumentOrShadowRoot/styleSheets
+translation_of_original: Web/API/Document/styleSheets
+original_slug: Web/API/DocumentOrShadowRoot/styleSheets
+---
+<div>{{APIRef}}</div>
+
+<div>La propriété <strong><code>Document.styleSheets </code></strong>est en lecture seule et retourne une liste {{domxref("StyleSheetList")}} d'objets {{domxref("StyleSheet")}}, qui font référence à l'ensemble des feuilles de style contenues ou embarquées dans le document.</div>
+
+<div> </div>
+
+<h2 id="Syntax" name="Syntax">Syntaxe</h2>
+
+<pre class="syntaxbox">var <var>styleSheetList</var> = <em>document</em>.styleSheets;
+</pre>
+
+<p>L'objet retourné est une liste {{domxref("StyleSheetList")}}.</p>
+
+<p>Il s'agit d'une collection ordonnée d'objets {{domxref("StyleSheet")}}. <code><em>styleSheetList</em>.item(<em>index</em>)</code> ou  <code><em>styleSheetList</em>{{ mediawiki.External('<em>index</em>') }}</code> retourne un seul objet stylesheet par son <code>index </code>(<code>index</code> débute par 0).</p>
+
+<h2 id="Specification" name="Specification">Spécification</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">Spécification</th>
+ <th scope="col">Statut</th>
+ <th scope="col">Commentaire</th>
+ </tr>
+ </thead>
+ <tbody>
+ </tbody>
+ <tbody>
+ <tr>
+ <td>{{SpecName('CSSOM', '#dom-document-stylesheets', 'styleSheets')}}</td>
+ <td>{{Spec2('CSSOM')}}</td>
+ <td> </td>
+ </tr>
+ <tr>
+ <td>{{SpecName('DOM2 Style', 'stylesheets.html#StyleSheets-DocumentStyle-styleSheets', 'styleSheets')}}</td>
+ <td>{{Spec2('DOM2 Style')}}</td>
+ <td> </td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="See_also" name="See_also">Voir aussi</h2>
+
+<ul>
+ <li>{{Link("/en-US/docs/Web/API/CSS_Object_Model/Using_dynamic_styling_information")}}</li>
+</ul>
+
+<ul>
+ <li><a class="external" href="http://www.w3.org/TR/DOM-Level-2-Style/stylesheets.html#StyleSheets-DocumentStyle-styleSheets">DOM Level 2 Style: styleSheets</a></li>
+</ul>