diff options
Diffstat (limited to 'files/fr/web/api/window/scrollbars/index.md')
-rw-r--r-- | files/fr/web/api/window/scrollbars/index.md | 81 |
1 files changed, 32 insertions, 49 deletions
diff --git a/files/fr/web/api/window/scrollbars/index.md b/files/fr/web/api/window/scrollbars/index.md index 1a292aed78..2b66d4a2a0 100644 --- a/files/fr/web/api/window/scrollbars/index.md +++ b/files/fr/web/api/window/scrollbars/index.md @@ -9,65 +9,48 @@ tags: - Window translation_of: Web/API/Window/scrollbars --- -<div>{{APIRef()}}</div> +{{APIRef()}} -<p>La propriété <code><strong>Window.scrollbars</strong></code> renvoie l'objet <code>scrollbars</code>, dont la visibilité peut être vérifié.</p> +La propriété **`Window.scrollbars`** renvoie l'objet `scrollbars`, dont la visibilité peut être vérifié. -<h2 id="Syntaxe">Syntaxe</h2> +## Syntaxe -<pre class="syntaxbox"><em>objRef</em> = window.scrollbars -</pre> + objRef = window.scrollbars -<h2 id="Exemple">Exemple</h2> +## Exemple -<p>L'exemple HTML complet suivant montre comment la propriété <code>visible</code> de l'objet scrollbars est utilisée.</p> +L'exemple HTML complet suivant montre comment la propriété `visible` de l'objet scrollbars est utilisée. -<pre class="brush: html"><!doctype html> -<html> -<head> - <title>Divers Tests DOM</title> - <script> +```html +<!doctype html> +<html> +<head> + <title>Divers Tests DOM</title> + <script> let visibleScrollbars = window.scrollbars.visible; - </script> -</head> -<body> - <p>Divers Tests DOM</p> -</body> -</html> -</pre> + </script> +</head> +<body> + <p>Divers Tests DOM</p> +</body> +</html> +``` -<h2 id="Spécifications">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('HTML WHATWG', 'browsers.html#dom-window-scrollbars', 'Window.scrollbars')}}</td> - <td>{{Spec2('HTML WHATWG')}}</td> - <td></td> - </tr> - <tr> - <td>{{SpecName('HTML5 W3C', 'browsers.html#dom-window-scrollbars', 'Window.scrollbars')}}</td> - <td>{{Spec2('HTML5 W3C')}}</td> - <td></td> - </tr> - </tbody> -</table> +| Spécification | Statut | Commentaire | +| -------------------------------------------------------------------------------------------------------------------- | -------------------------------- | ----------- | +| {{SpecName('HTML WHATWG', 'browsers.html#dom-window-scrollbars', 'Window.scrollbars')}} | {{Spec2('HTML WHATWG')}} | | +| {{SpecName('HTML5 W3C', 'browsers.html#dom-window-scrollbars', 'Window.scrollbars')}} | {{Spec2('HTML5 W3C')}} | | -<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> +## Compatibilité des navigateurs -<p>{{Compat("api.Window.scrollbars")}}</p> +{{Compat("api.Window.scrollbars")}} -<h2 id="Voir_également">Voir également</h2> +## Voir également -<ul> - <li>{{domxref("window.locationbar")}}</li> - <li>{{domxref("window.menubar")}}</li> - <li>{{domxref("window.personalbar")}}</li> - <li>{{domxref("window.statusbar")}}</li> - <li>{{domxref("window.toolbar")}}</li> -</ul> +- {{domxref("window.locationbar")}} +- {{domxref("window.menubar")}} +- {{domxref("window.personalbar")}} +- {{domxref("window.statusbar")}} +- {{domxref("window.toolbar")}} |