diff options
author | julieng <julien.gattelier@gmail.com> | 2021-10-02 17:20:14 +0200 |
---|---|---|
committer | SphinxKnight <SphinxKnight@users.noreply.github.com> | 2021-10-02 17:30:20 +0200 |
commit | c05efa8d7ae464235cf83d7c0956e42dc6974103 (patch) | |
tree | 6ea911b2f2010f63a026de6bb7a1a51e7690a7e1 /files/fr/web/api/domrectreadonly/right/index.md | |
parent | 13a5e017558b248ee1647d4a5825f183b51f09ad (diff) | |
download | translated-content-c05efa8d7ae464235cf83d7c0956e42dc6974103.tar.gz translated-content-c05efa8d7ae464235cf83d7c0956e42dc6974103.tar.bz2 translated-content-c05efa8d7ae464235cf83d7c0956e42dc6974103.zip |
move *.html to *.md
Diffstat (limited to 'files/fr/web/api/domrectreadonly/right/index.md')
-rw-r--r-- | files/fr/web/api/domrectreadonly/right/index.md | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/files/fr/web/api/domrectreadonly/right/index.md b/files/fr/web/api/domrectreadonly/right/index.md new file mode 100644 index 0000000000..011e820cf3 --- /dev/null +++ b/files/fr/web/api/domrectreadonly/right/index.md @@ -0,0 +1,50 @@ +--- +title: DOMRectReadOnly.right +slug: Web/API/DOMRectReadOnly/right +tags: + - API + - DOM + - Droite + - Géométrie + - Propriétés + - Rectangle +translation_of: Web/API/DOMRectReadOnly/right +--- +<p>{{APIRef("DOM")}}{{ SeeCompatTable() }}</p> + +<p>La propriété en lecture seule <code><strong>right</strong></code> de l'interface <strong><code>DOMRectReadOnly</code></strong> renvoie la valeur de la coordonnée droite du <code>DOMRect.</code> (a la même valeur que <code>x + width</code> <em>(x + largeur)</em>, ou <code>x</code> si <code>width</code> est négative).</p> + +<h2 id="Syntaxe">Syntaxe</h2> + +<pre class="brush: js">var recRight = DOMRect.right;</pre> + +<h3 id="Specification">Valeur</h3> + +<p>Un double.</p> + +<h2 id="Specification">Spécifications</h2> + +<table class="standard-table"> + <tbody> + <tr> + <th scope="col">Spécification</th> + <th scope="col">Statut</th> + <th scope="col">Commentaire</th> + </tr> + <tr> + <td>{{SpecName('Geometry Interfaces', '#dom-domrectreadonly-right', 'right')}}</td> + <td>{{Spec2('Geometry Interfaces')}}</td> + <td>La dernière version de la spécification est un ED.</td> + </tr> + </tbody> +</table> + +<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> + +<p>{{Compat("api.DOMRectReadOnly.right")}}</p> + +<h2 id="Voir_aussi">Voir aussi</h2> + +<ul> + <li>{{domxref("DOMRect")}}</li> +</ul> |