aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/stylesheet
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/fr/web/api/stylesheet
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/fr/web/api/stylesheet')
-rw-r--r--files/fr/web/api/stylesheet/disabled/index.html25
-rw-r--r--files/fr/web/api/stylesheet/href/index.html51
-rw-r--r--files/fr/web/api/stylesheet/index.html69
-rw-r--r--files/fr/web/api/stylesheet/media/index.html35
-rw-r--r--files/fr/web/api/stylesheet/ownernode/index.html41
-rw-r--r--files/fr/web/api/stylesheet/parentstylesheet/index.html36
-rw-r--r--files/fr/web/api/stylesheet/title/index.html22
-rw-r--r--files/fr/web/api/stylesheet/type/index.html24
8 files changed, 303 insertions, 0 deletions
diff --git a/files/fr/web/api/stylesheet/disabled/index.html b/files/fr/web/api/stylesheet/disabled/index.html
new file mode 100644
index 0000000000..d338299bf1
--- /dev/null
+++ b/files/fr/web/api/stylesheet/disabled/index.html
@@ -0,0 +1,25 @@
+---
+title: StyleSheet.disabled
+slug: Web/API/StyleSheet/disabled
+translation_of: Web/API/StyleSheet/disabled
+---
+<div><font><font>{{APIRef("CSSOM")}}</font></font></div>
+
+<p><font><font>La </font></font><code><strong>StyleSheet.disabled</strong></code><font><font>propriété indique si la feuille de style est empêchée de demander le document. </font><font>Une feuille de style peut être désactivé en réglant manuellement cette propriété </font></font><code>true</code><font><font>ou si elle est une forme </font><font>inactive </font></font><a href="/en-US/docs/Web/CSS/Alternative_style_sheets"><font><font>feuille de style alternatif</font></font></a><font><font> . </font><font>Notez que </font></font><code>disabled == false</code><font><font>ne garantit pas la feuille de style est appliquée (il pourrait être supprimé du document, par exemple).</font></font></p>
+
+<h2 id="Syntax" name="Syntax"><font><font>Syntaxe</font></font></h2>
+
+<pre class="eval"><em><font><font>bool</font></font></em><font><font> = stylesheet.disabled
+</font></font></pre>
+
+<h2 id="Example" name="Example"><font><font>Exemple</font></font></h2>
+
+<pre><font><font>// si la feuille de style est désactivé ... </font></font><font><font>
+si (stylesheet.disabled) {</font></font><font><font>
+ // appliquer le style en ligne </font></font>
+}
+</pre>
+
+<h2 id="Specification" name="Specification"><font><font>spécification</font></font></h2>
+
+<p><a class="external" href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113/stylesheets.html#StyleSheets-StyleSheet-disabled"><font><font>désactivée </font></font></a></p>
diff --git a/files/fr/web/api/stylesheet/href/index.html b/files/fr/web/api/stylesheet/href/index.html
new file mode 100644
index 0000000000..f1ff1da5ea
--- /dev/null
+++ b/files/fr/web/api/stylesheet/href/index.html
@@ -0,0 +1,51 @@
+---
+title: Stylesheet.href
+slug: Web/API/StyleSheet/href
+translation_of: Web/API/StyleSheet/href
+---
+<div><font><font>{{APIRef ("CSSOM")}}</font></font></div>
+
+<h2 id="Summary" name="Summary"><font><font>Résumé</font></font></h2>
+
+<p><font><font>Renvoie l'emplacement de la feuille de style.</font></font></p>
+
+<h2 id="Syntax" name="Syntax"><font><font>Syntaxe</font></font></h2>
+
+<pre class="eval"><em><font><font>Uri</font></font></em><font><font> = stylesheet.href
+</font></font></pre>
+
+<h3 id="Parameters" name="Parameters"><font><font>Paramètres</font></font></h3>
+
+<ul>
+ <li><code>uri</code><font><font> Est une chaîne contenant l'URI de la feuille de style.</font></font></li>
+</ul>
+
+<h2 id="Example" name="Example"><font><font>Exemple</font></font></h2>
+
+<pre><font><font> // sur une machine locale: </font></font><font><font>
+ &lt;Html&gt; </font></font><font><font>
+ &lt;Tête&gt; </font></font><font><font>
+ &lt;Link rel = "StyleSheet" href = "example.css" type = "text / css" /&gt; </font></font><font><font>
+ &lt;Script&gt; </font></font><font><font>
+ Function sref () { </font></font><font><font>
+ Alerte (document.styleSheets [0] .href); </font></font><font><font>
+ }</font></font><font><font>
+ &lt;/ Script&gt; </font></font><font><font>
+ &lt;/ Head&gt; </font></font><font><font>
+ &lt;Body&gt; </font></font><font><font>
+ &lt;Div class = "tonnerre"&gt; Thunder &lt;/ div&gt;</font></font><font><font>
+ &lt;Button onclick = "sref ()"&gt; ss &lt;/ button&gt;</font></font><font><font>
+ &lt;/ Body&gt; </font></font><font><font>
+ &lt;/ Html&gt;</font></font><font><font>
+// retourne "fichier: //// C: /Windows/Desktop/example.css</font></font>
+</pre>
+
+<h2 id="Notes" name="Notes"><font><font>Remarques</font></font></h2>
+
+<p><font><font>Si la feuille de style est une feuille de style liée, la valeur de son attribut est son emplacement. </font><font>Pour les feuilles de style en ligne, la valeur de cet attribut est </font></font><code>NULL</code><font><font>.</font></font></p>
+
+<p><font><font>Cette propriété est en lecture seule sur Firefox, Opera, Google Chrome et Safari, et elle est lue / écrite dans Internet Explorer.</font></font></p>
+
+<h2 id="Specification" name="Specification"><font><font>spécification</font></font></h2>
+
+<p><a class="external" href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113/stylesheets.html#StyleSheets-StyleSheet-href"><font><font>Href </font></font></a></p>
diff --git a/files/fr/web/api/stylesheet/index.html b/files/fr/web/api/stylesheet/index.html
new file mode 100644
index 0000000000..3f79c427bc
--- /dev/null
+++ b/files/fr/web/api/stylesheet/index.html
@@ -0,0 +1,69 @@
+---
+title: StyleSheet
+slug: Web/API/StyleSheet
+tags:
+ - API
+ - CSS
+ - DOM
+ - Interface
+ - StyleSheet
+translation_of: Web/API/StyleSheet
+---
+<div>{{APIRef("CSSOM")}}</div>
+
+<p>Un objet qui implémente l'interface <code>StyleSheet</code> représente une seule feuille de style. Les feuilles de style CSS implémenteront également l'interface plus spécialisée {{domxref("CSSStyleSheet")}}.</p>
+
+<h2 id="Properties" name="Properties">Propriétés</h2>
+
+<dl>
+ <dt>{{domxref("StyleSheet.disabled")}}</dt>
+ <dd>Un booléen ({{domxref("Boolean")}}) indiquant si la feuille de style est appliquée ou non.</dd>
+ <dt>{{domxref("StyleSheet.href")}} {{readonlyInline}}</dt>
+ <dd>Une chaîne de caractères ({{domxref("DOMString")}}) représentant l'emplacement de la feuille de style.</dd>
+ <dt>{{domxref("StyleSheet.media")}} {{readonlyInline}}</dt>
+ <dd>Une {{domxref("MediaList")}} représentant le média de destination pour les informations de style.</dd>
+ <dt>{{domxref("StyleSheet.ownerNode")}} {{readonlyInline}}</dt>
+ <dd>Un objet {{domxref("Node")}} qui représente le nœud associant cette feuille de style avec le document courant.</dd>
+ <dt>{{domxref("StyleSheet.parentStyleSheet")}} {{readonlyInline}}</dt>
+ <dd>Un objet {{domxref("StyleSheet")}} qui inclut l'objet courant si ce dernier possède un parent ou <code>null</code> s'il n'y en a pas.</dd>
+ <dt>{{domxref("StyleSheet.title")}} {{readonlyInline}}</dt>
+ <dd>Une chaîne de caractères ({{domxref("DOMString")}}) indiquant le titre indicatif de la feuille de style courante.</dd>
+ <dt>{{domxref("StyleSheet.type")}} {{readonlyInline}}</dt>
+ <dd>Une chaîne de caractères {{domxref("DOMString")}} indiquant le langage de représentation pour cette feuille de style.</dd>
+</dl>
+
+<h2 id="Specification" name="Specification">Spécifications</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">Spécification</th>
+ <th scope="col">État</th>
+ <th scope="col">Commentaire</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{SpecName('CSSOM', '#stylesheet', 'StyleSheet')}}</td>
+ <td>{{Spec2('CSSOM')}}</td>
+ <td>Pas de changement depuis {{SpecName('DOM2 Style')}}.</td>
+ </tr>
+ <tr>
+ <td>{{SpecName('DOM2 Style', 'stylesheets.html#StyleSheets-StyleSheet', 'StyleSheet')}}</td>
+ <td>{{Spec2('DOM2 Style')}}</td>
+ <td>Définition initiale.</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
+
+<div class="hidden">Le tableau de compatibilité de cette page a été généré à partir de données structurées. Si vous souhaitez contribuer à ces données, n'hésitez pas à consulter <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> et à nous envoyer une <em>pull request</em>.</div>
+
+<p>{{Compat("api.StyleSheet")}}</p>
+
+<h2 id="Voir_aussi">Voir aussi</h2>
+
+<ul>
+ <li>{{domxref("CSSStyleSheet")}}</li>
+</ul>
diff --git a/files/fr/web/api/stylesheet/media/index.html b/files/fr/web/api/stylesheet/media/index.html
new file mode 100644
index 0000000000..89c03f7438
--- /dev/null
+++ b/files/fr/web/api/stylesheet/media/index.html
@@ -0,0 +1,35 @@
+---
+title: StyleSheet.media
+slug: Web/API/StyleSheet/media
+translation_of: Web/API/StyleSheet/media
+---
+<div><font><font>{{APIRef ("CSSOM")}}</font></font></div>
+
+<h2 id="Summary" name="Summary"><font><font>Résumé</font></font></h2>
+
+<p><strong><font><font>Media</font></font></strong><font><font> spécifie le support de destination prévu pour les informations de style.</font></font></p>
+
+<h2 id="Syntax" name="Syntax"><font><font>Syntaxe</font></font></h2>
+
+<pre class="eval"><em><font><font>Medium</font></font></em><font><font> = stylesheet.media</font></font><font><font>
+Stylesheet.media = </font></font><em><font><font>medium</font></font></em>
+</pre>
+
+<h2 id="Parameters" name="Parameters"><font><font>Paramètres</font></font></h2>
+
+<ul>
+ <li><code>medium</code><font><font> Est une chaîne décrivant un seul moyen ou une liste séparée par des virgules.</font></font></li>
+</ul>
+
+<h2 id="Example" name="Example"><font><font>Exemple</font></font></h2>
+
+<pre><font><font>&lt;Link rel = "StyleSheet" href = "document.css" type = "text / css" media = "screen" /&gt;
+</font></font></pre>
+
+<h2 id="Notes" name="Notes"><font><font>Remarques</font></font></h2>
+
+<p><font><font>La valeur par défaut pour les médias est "écran".</font></font></p>
+
+<h2 id="Specification" name="Specification"><font><font>spécification</font></font></h2>
+
+<p><font><font>DOM Styles de niveau 2 - FEUILLE DE STYLES</font></font></p>
diff --git a/files/fr/web/api/stylesheet/ownernode/index.html b/files/fr/web/api/stylesheet/ownernode/index.html
new file mode 100644
index 0000000000..b1f3d9c1e3
--- /dev/null
+++ b/files/fr/web/api/stylesheet/ownernode/index.html
@@ -0,0 +1,41 @@
+---
+title: StyleSheet.ownerNode
+slug: Web/API/StyleSheet/ownerNode
+translation_of: Web/API/StyleSheet/ownerNode
+---
+<div><font><font>{{APIRef ("CSSOM")}}</font></font></div>
+
+<h2 id="Summary" name="Summary"><font><font>Résumé</font></font></h2>
+
+<p><strong><font><font>OwnerNode</font></font></strong><font><font> renvoie le noeud qui associe cette feuille de style au document.</font></font></p>
+
+<h2 id="Syntax" name="Syntax"><font><font>Syntaxe</font></font></h2>
+
+<pre class="eval"><em><font><font>ObjRef</font></font></em><font><font> = stylesheet.ownerNode
+</font></font></pre>
+
+<h2 id="Example" name="Example"><font><font>Exemple</font></font></h2>
+
+<pre class="eval"><font><font>&lt;Html&gt;</font></font><font><font>
+ &lt;Tête&gt;</font></font><font><font>
+ &lt;Link rel = "StyleSheet" href = "example.css" type = "text / css" /&gt;</font></font><font><font>
+ &lt;Script&gt;</font></font><font><font>
+ Function stilo () {</font></font><font><font>
+ Alerte (document.styleSheets [0] .ownerNode);</font></font><font><font>
+ }</font></font><font><font>
+ &lt;/ Script&gt; </font></font><font><font>
+ &lt;/ Head&gt;</font></font><font><font>
+ &lt;Body&gt;</font></font><font><font>
+ &lt;Button onclick = "stilo ()"&gt; ss &lt;/ button&gt;</font></font><font><font>
+ &lt;/ Body&gt;</font></font><font><font>
+&lt;/ Html&gt;</font></font><font><font>
+// affiche "objet HTMLLinkElement"</font></font>
+</pre>
+
+<h2 id="Notes" name="Notes"><font><font>Remarques</font></font></h2>
+
+<p><font><font>Pour HTML, </font></font><strong><font><font>ownerNode</font></font></strong><font><font> peut être l' </font><font>élément </font></font><a href="en/LINK"><font><font>LINK</font></font></a><font><font> ou </font></font><a href="en/STYLE"><font><font>STYLE</font></font></a><font><font> correspondant </font><font>. </font><font>Pour XML, il peut s'agir des instructions de traitement de liaison. </font><font>Pour les feuilles de style qui sont incluses dans d'autres feuilles de style, la valeur de cet attribut est NULL.</font></font></p>
+
+<h2 id="Specification" name="Specification"><font><font>spécification</font></font></h2>
+
+<p><font><font>DOM Styles de niveau 2 - FEUILLE DE STYLES</font></font></p>
diff --git a/files/fr/web/api/stylesheet/parentstylesheet/index.html b/files/fr/web/api/stylesheet/parentstylesheet/index.html
new file mode 100644
index 0000000000..8db8ffbff9
--- /dev/null
+++ b/files/fr/web/api/stylesheet/parentstylesheet/index.html
@@ -0,0 +1,36 @@
+---
+title: StyleSheet.parentStyleSheet
+slug: Web/API/StyleSheet/parentStyleSheet
+translation_of: Web/API/StyleSheet/parentStyleSheet
+---
+<div>
+<div><font><font>{{APIRef ("CSSOM")}}</font></font></div>
+</div>
+
+<h2 id="Summary" name="Summary"><font><font>Résumé</font></font></h2>
+
+<p><font><font>Renvoie la feuille de style qui inclut celle-ci, le cas échéant.</font></font></p>
+
+<h2 id="Syntax" name="Syntax"><font><font>Syntaxe</font></font></h2>
+
+<pre class="syntaxbox"><em><font><font>ObjRef</font></font></em><font><font> = stylesheet.parentStyleSheet
+</font></font></pre>
+
+<h2 id="Example" name="Example"><font><font>Exemple</font></font></h2>
+
+<pre class="brush:js"><font><font>// trouve la feuille de style de niveau supérieur</font></font><font><font>
+If (stylesheet.parentStyleSheet) {</font></font><font><font>
+ Feuille = stylesheet.parentStyleSheet;</font></font><font><font>
+} autre {</font></font><font><font>
+ Feuille = feuille de style;</font></font><font><font>
+}</font></font></pre>
+
+<h2 id="Notes" name="Notes"><font><font>Remarques</font></font></h2>
+
+<p><font><font>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.</font></font></p>
+
+<h2 id="Specification" name="Specification"><font><font>spécification</font></font></h2>
+
+<ul>
+ <li><a class="external" href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113/stylesheets.html#StyleSheets-StyleSheet-parentStyleSheet"><font><font>ParentStyleSheet </font></font></a></li>
+</ul>
diff --git a/files/fr/web/api/stylesheet/title/index.html b/files/fr/web/api/stylesheet/title/index.html
new file mode 100644
index 0000000000..a33fd45920
--- /dev/null
+++ b/files/fr/web/api/stylesheet/title/index.html
@@ -0,0 +1,22 @@
+---
+title: StyleSheet.title
+slug: Web/API/StyleSheet/title
+translation_of: Web/API/StyleSheet/title
+---
+<div>
+<div><font><font>{{APIRef ("CSSOM")}}</font></font></div>
+</div>
+
+<h2 id="Summary" name="Summary"><font><font>Résumé</font></font></h2>
+
+<p><code>title</code><font><font> Renvoie le titre de conseil de la feuille de style actuelle.</font></font></p>
+
+<h2 id="Notes" name="Notes"><font><font>Remarques</font></font></h2>
+
+<p><font><font>Le titre est souvent spécifié dans {{domxref ("StyleSheet / OwnerNode", "ownerNode")}}.</font></font></p>
+
+<h2 id="Specification" name="Specification"><font><font>spécification</font></font></h2>
+
+<ul>
+ <li><a class="external" href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113/stylesheets.html#StyleSheets-StyleSheet-title"><font><font>Titre </font></font></a></li>
+</ul>
diff --git a/files/fr/web/api/stylesheet/type/index.html b/files/fr/web/api/stylesheet/type/index.html
new file mode 100644
index 0000000000..eb315e2871
--- /dev/null
+++ b/files/fr/web/api/stylesheet/type/index.html
@@ -0,0 +1,24 @@
+---
+title: StyleSheet.type
+slug: Web/API/StyleSheet/type
+translation_of: Web/API/StyleSheet/type
+---
+<div><font><font>{{APIRef ("CSSOM")}}</font></font></div>
+
+<h2 id="Summary" name="Summary"><font><font>Résumé</font></font></h2>
+
+<p><font><font>Type spécifie la langue de la feuille de style pour cette feuille de style.</font></font></p>
+
+<h2 id="Syntax" name="Syntax"><font><font>Syntaxe</font></font></h2>
+
+<pre class="eval"><em><font><font>String</font></font></em><font><font> = stylesheet.type
+</font></font></pre>
+
+<h2 id="Example" name="Example"><font><font>Exemple</font></font></h2>
+
+<pre><font><font> Ss.type = "text / css";
+</font></font></pre>
+
+<h2 id="Specification" name="Specification"><font><font>spécification</font></font></h2>
+
+<p><a class="external" href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113/stylesheets.html#StyleSheets-StyleSheet-type"><font><font>type </font></font></a></p>