aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/document/width/index.md
blob: 9ac2720827b93e616126041e0c133a3eae7946d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
---
title: Document.width
slug: Web/API/Document/width
translation_of: Web/API/Document/width
---
{{APIRef("DOM")}} {{Obsolete_header}}

> **Note :** À partir de {{Gecko("6.0")}},` document.width `n'est plus pris en charge. Au lieu de cela, utilisez document.body.clientWidth. Voir {{domxref("element.clientWidth")}}.

Renvoie la largeur de l'élément {{HTMLElement("body")}} du document courrent en pixels.

Non pris en charge par Internet Explorer.

## Syntaxe

    pixels = document.width;

## Exemple

```js
function init() {
    alert("La largeur du document est " + document.width + " pixels.");
}
```

## Alternatives

    document.body.clientWidth              /* largeur de <body> */
    document.documentElement.clientWidth   /* largeur de <html> */
    window.innerWidth                      /* largeur de la fenêtre */

## Spécification

HTML5

## Voir également

- {{domxref("document.height")}}
- {{domxref("Element.clientWidth")}}
- {{domxref("Element.scrollWidth")}}