diff options
Diffstat (limited to 'files/fr/web/api/domrectreadonly/bottom/index.md')
-rw-r--r-- | files/fr/web/api/domrectreadonly/bottom/index.md | 43 |
1 files changed, 16 insertions, 27 deletions
diff --git a/files/fr/web/api/domrectreadonly/bottom/index.md b/files/fr/web/api/domrectreadonly/bottom/index.md index 16fb24cd52..5552416e2d 100644 --- a/files/fr/web/api/domrectreadonly/bottom/index.md +++ b/files/fr/web/api/domrectreadonly/bottom/index.md @@ -10,41 +10,30 @@ tags: - Rectangle translation_of: Web/API/DOMRectReadOnly/bottom --- -<p>{{APIRef("DOM")}}{{ SeeCompatTable() }}</p> +{{APIRef("DOM")}}{{ SeeCompatTable() }} -<p>La propriété en lecture seule <code><strong>bottom</strong></code> d'une interface <strong><code>DOMRectReadOnly</code></strong> renvoie la valeur des coordonnées du pied du <code>DOMRect</code> (a la même valeur que <code>y + height</code> <em>(y + hauteur)</em>, ou <code>y</code> si <code>height</code> est négative).</p> +La propriété en lecture seule **`bottom`** d'une interface **`DOMRectReadOnly`** renvoie la valeur des coordonnées du pied du `DOMRect` (a la même valeur que `y + height` _(y + hauteur)_, ou `y` si `height` est négative). -<h2 id="Syntaxe">Syntaxe</h2> +## Syntaxe -<pre class="brush: js">var recBottom = DOMRect.bottom;</pre> +```js +var recBottom = DOMRect.bottom; +``` -<h3 id="Specification">Valeur</h3> +### Valeur -<p>Un double.</p> +Un double. -<h2 id="Specification">Spécifications</h2> +## Spécifications -<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-bottom', 'bottom')}}</td> - <td>{{Spec2('Geometry Interfaces')}}</td> - <td>La dernière version de la spécification est un ED.</td> - </tr> - </tbody> -</table> +| Spécification | Statut | Commentaire | +| ---------------------------------------------------------------------------------------------------- | -------------------------------------------- | -------------------------------------------------- | +| {{SpecName('Geometry Interfaces', '#dom-domrectreadonly-bottom', 'bottom')}} | {{Spec2('Geometry Interfaces')}} | La dernière version de la spécification est un ED. | -<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> +## Compatibilité des navigateurs -<p>{{Compat("api.DOMRectReadOnly.bottom")}}</p> +{{Compat("api.DOMRectReadOnly.bottom")}} -<h2 id="Voir_aussi">Voir aussi</h2> +## Voir aussi -<ul> - <li>{{domxref("DOMRect")}}</li> -</ul> +- {{domxref("DOMRect")}} |