aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/document/height/index.md
diff options
context:
space:
mode:
Diffstat (limited to 'files/fr/web/api/document/height/index.md')
-rw-r--r--files/fr/web/api/document/height/index.md45
1 files changed, 20 insertions, 25 deletions
diff --git a/files/fr/web/api/document/height/index.md b/files/fr/web/api/document/height/index.md
index 6dbe1f47e8..f05e75b127 100644
--- a/files/fr/web/api/document/height/index.md
+++ b/files/fr/web/api/document/height/index.md
@@ -3,42 +3,37 @@ title: Document.height
slug: Web/API/Document/height
translation_of: Web/API/Document/height
---
-<div>{{APIRef("DOM")}} {{Obsolete_header}}</div>
+{{APIRef("DOM")}} {{Obsolete_header}}
-<div class="note">
-<p><strong>Note:</strong> Apparu avec {{Gecko("6.0")}},<code> document.height n'est plus supporté</code>. Utilisez à la place <code>document.body.clientHeight</code>. Voir {{domxref("element.clientHeight")}}.</p>
-</div>
+> **Note :** Apparu avec {{Gecko("6.0")}},` document.height n'est plus supporté`. Utilisez à la place `document.body.clientHeight`. Voir {{domxref("element.clientHeight")}}.
-<h2 id="Résumé">Résumé</h2>
+## Résumé
-<p>Retourne la hauteur de l'objet {{domxref("document")}}. Dans la plupart des cas, ceci est égal à l'élément {{HTMLElement("body")}} du document courant.</p>
+Retourne la hauteur de l'objet {{domxref("document")}}. Dans la plupart des cas, ceci est égal à l'élément {{HTMLElement("body")}} du document courant.
-<h2 id="Syntax">Syntaxe</h2>
+## Syntaxe
-<pre class="syntaxbox"><em>height_value</em> = document.height
-</pre>
+ height_value = document.height
-<h2 id="Exemple">Exemple</h2>
+## Exemple
-<pre class="brush: js">// alert document height
+```js
+// alert document height
alert(document.height);
-</pre>
+```
-<h2 id="Alternatives">Alternatives</h2>
+## Alternatives
-<pre class="syntaxbox">document.body.clientHeight
-document.documentElement.clientHeight
-document.documentElement.scrollHeight
-</pre>
+ document.body.clientHeight
+ document.documentElement.clientHeight
+ document.documentElement.scrollHeight
-<h2 id="Spécification">Spécification</h2>
+## Spécification
-<p>HTML5</p>
+HTML5
-<h2 id="Voir_aussi">Voir aussi</h2>
+## Voir aussi
-<ul>
- <li>{{domxref("document.width")}}</li>
- <li>{{domxref("Element.clientHeight")}}</li>
- <li>{{domxref("Element.scrollHeight")}}</li>
-</ul>
+- {{domxref("document.width")}}
+- {{domxref("Element.clientHeight")}}
+- {{domxref("Element.scrollHeight")}}