aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/stylesheet/parentstylesheet/index.md
diff options
context:
space:
mode:
authorjulieng <julien.gattelier@gmail.com>2021-10-02 17:20:14 +0200
committerSphinxKnight <SphinxKnight@users.noreply.github.com>2021-10-02 17:30:20 +0200
commitc05efa8d7ae464235cf83d7c0956e42dc6974103 (patch)
tree6ea911b2f2010f63a026de6bb7a1a51e7690a7e1 /files/fr/web/api/stylesheet/parentstylesheet/index.md
parent13a5e017558b248ee1647d4a5825f183b51f09ad (diff)
downloadtranslated-content-c05efa8d7ae464235cf83d7c0956e42dc6974103.tar.gz
translated-content-c05efa8d7ae464235cf83d7c0956e42dc6974103.tar.bz2
translated-content-c05efa8d7ae464235cf83d7c0956e42dc6974103.zip
move *.html to *.md
Diffstat (limited to 'files/fr/web/api/stylesheet/parentstylesheet/index.md')
-rw-r--r--files/fr/web/api/stylesheet/parentstylesheet/index.md34
1 files changed, 34 insertions, 0 deletions
diff --git a/files/fr/web/api/stylesheet/parentstylesheet/index.md b/files/fr/web/api/stylesheet/parentstylesheet/index.md
new file mode 100644
index 0000000000..1f0d852edf
--- /dev/null
+++ b/files/fr/web/api/stylesheet/parentstylesheet/index.md
@@ -0,0 +1,34 @@
+---
+title: StyleSheet.parentStyleSheet
+slug: Web/API/StyleSheet/parentStyleSheet
+translation_of: Web/API/StyleSheet/parentStyleSheet
+---
+<div>
+<div>{{APIRef ("CSSOM")}}</div>
+</div>
+
+<p>Renvoie la feuille de style qui inclut celle-ci, le cas échéant.</p>
+
+<h2 id="Syntax">Syntaxe</h2>
+
+<pre class="syntaxbox"><em>ObjRef</em> = stylesheet.parentStyleSheet
+</pre>
+
+<h2 id="Example">Exemple</h2>
+
+<pre class="brush:js">// trouve la feuille de style de niveau supérieur
+If (stylesheet.parentStyleSheet) {
+ Feuille = stylesheet.parentStyleSheet;
+} autre {
+ Feuille = feuille de style;
+}</pre>
+
+<h2 id="Notes">Remarques</h2>
+
+<p>Cette propriété renvoie NULL est la feuille de style actuelle est une feuille de style de haut niveau ou si l'inclusion de la feuille de style n'est pas prise en charge.</p>
+
+<h2 id="Specification">spécification</h2>
+
+<ul>
+ <li><a href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113/stylesheets.html#StyleSheets-StyleSheet-parentStyleSheet">ParentStyleSheet </a></li>
+</ul>