From c05efa8d7ae464235cf83d7c0956e42dc6974103 Mon Sep 17 00:00:00 2001 From: julieng Date: Sat, 2 Oct 2021 17:20:14 +0200 Subject: move *.html to *.md --- files/fr/web/api/document/height/index.html | 44 ----------------------------- files/fr/web/api/document/height/index.md | 44 +++++++++++++++++++++++++++++ 2 files changed, 44 insertions(+), 44 deletions(-) delete mode 100644 files/fr/web/api/document/height/index.html create mode 100644 files/fr/web/api/document/height/index.md (limited to 'files/fr/web/api/document/height') diff --git a/files/fr/web/api/document/height/index.html b/files/fr/web/api/document/height/index.html deleted file mode 100644 index 6dbe1f47e8..0000000000 --- a/files/fr/web/api/document/height/index.html +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: Document.height -slug: Web/API/Document/height -translation_of: Web/API/Document/height ---- -
{{APIRef("DOM")}} {{Obsolete_header}}
- -
-

Note: Apparu avec {{Gecko("6.0")}}, document.height n'est plus supporté. Utilisez à la place document.body.clientHeight. Voir {{domxref("element.clientHeight")}}.

-
- -

Résumé

- -

Retourne la hauteur de l'objet {{domxref("document")}}. Dans la plupart des cas, ceci est égal à l'élément {{HTMLElement("body")}} du document courant.

- -

Syntaxe

- -
height_value = document.height
-
- -

Exemple

- -
// alert document height
-alert(document.height);
-
- -

Alternatives

- -
document.body.clientHeight
-document.documentElement.clientHeight
-document.documentElement.scrollHeight
-
- -

Spécification

- -

HTML5

- -

Voir aussi

- - diff --git a/files/fr/web/api/document/height/index.md b/files/fr/web/api/document/height/index.md new file mode 100644 index 0000000000..6dbe1f47e8 --- /dev/null +++ b/files/fr/web/api/document/height/index.md @@ -0,0 +1,44 @@ +--- +title: Document.height +slug: Web/API/Document/height +translation_of: Web/API/Document/height +--- +
{{APIRef("DOM")}} {{Obsolete_header}}
+ +
+

Note: Apparu avec {{Gecko("6.0")}}, document.height n'est plus supporté. Utilisez à la place document.body.clientHeight. Voir {{domxref("element.clientHeight")}}.

+
+ +

Résumé

+ +

Retourne la hauteur de l'objet {{domxref("document")}}. Dans la plupart des cas, ceci est égal à l'élément {{HTMLElement("body")}} du document courant.

+ +

Syntaxe

+ +
height_value = document.height
+
+ +

Exemple

+ +
// alert document height
+alert(document.height);
+
+ +

Alternatives

+ +
document.body.clientHeight
+document.documentElement.clientHeight
+document.documentElement.scrollHeight
+
+ +

Spécification

+ +

HTML5

+ +

Voir aussi

+ + -- cgit v1.2.3-54-g00ecf