diff options
author | julieng <julien.gattelier@gmail.com> | 2021-10-02 17:20:24 +0200 |
---|---|---|
committer | SphinxKnight <SphinxKnight@users.noreply.github.com> | 2021-10-02 17:30:20 +0200 |
commit | 1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde (patch) | |
tree | 30a56efd3eff3a01bd1611e1840fdbbfacf544a4 /files/fr/web/api/textmetrics/width/index.md | |
parent | c05efa8d7ae464235cf83d7c0956e42dc6974103 (diff) | |
download | translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.tar.gz translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.tar.bz2 translated-content-1407c8fdef01ecd0ffb8a8bd46e7113f119b9fde.zip |
convert content to md
Diffstat (limited to 'files/fr/web/api/textmetrics/width/index.md')
-rw-r--r-- | files/fr/web/api/textmetrics/width/index.md | 65 |
1 files changed, 27 insertions, 38 deletions
diff --git a/files/fr/web/api/textmetrics/width/index.md b/files/fr/web/api/textmetrics/width/index.md index 69436e4cb2..4ee47b6d47 100644 --- a/files/fr/web/api/textmetrics/width/index.md +++ b/files/fr/web/api/textmetrics/width/index.md @@ -9,53 +9,42 @@ tags: - TextMetrics translation_of: Web/API/TextMetrics/width --- -<div>{{APIRef("Canvas API")}}</div> +{{APIRef("Canvas API")}} -<p>La propriété en lecture seule <strong>TextMetrics.width</strong> contient en pixels CSS la largeur d'avance du texte (la largeur de la boîte de ligne).</p> +La propriété en lecture seule **TextMetrics.width** contient en pixels CSS la largeur d'avance du texte (la largeur de la boîte de ligne). -<h2 id="Syntax">Syntaxe</h2> +## Syntaxe -<pre class="syntaxbox"><var>readonly <em>metrics</em></var>.width;</pre> + readonly metrics.width; -<h2 id="Exemples">Exemples</h2> +## Exemples -<p>Étant donné cet élément {{HTMLElement("canvas")}} :</p> +Étant donné cet élément {{HTMLElement("canvas")}} : -<pre class="brush: html"><canvas id="canevas"></canvas> -</pre> +```html +<canvas id="canevas"></canvas> +``` -<p>vous pouvez obtenir un objet {{domxref("TextMetrics")}} en utilisant le code suivant :</p> +vous pouvez obtenir un objet {{domxref("TextMetrics")}} en utilisant le code suivant : -<pre class="brush: js">var canvas = document.getElementById("canevas"); +```js +var canvas = document.getElementById("canevas"); var ctx = canvas.getContext("2d"); var texte = ctx.measureText("foo"); // objet TextMetrics texte.width; // 16; -</pre> - -<h2 id="Spécifications">Spécifications</h2> - -<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', "scripting.html#dom-textmetrics-width", "TextMetrics.width")}}</td> - <td>{{Spec2('HTML WHATWG')}}</td> - <td> </td> - </tr> - </tbody> -</table> - -<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> - -<p>{{Compat("api.TextMetrics.width")}}</p> - -<h2 id="Voir_aussi">Voir aussi</h2> - -<ul> - <li>{{domxref("TextMetrics")}}</li> -</ul> +``` + +## Spécifications + +| Spécification | Statut | Commentaire | +| -------------------------------------------------------------------------------------------------------------------- | -------------------------------- | ----------- | +| {{SpecName('HTML WHATWG', "scripting.html#dom-textmetrics-width", "TextMetrics.width")}} | {{Spec2('HTML WHATWG')}} | | + +## Compatibilité des navigateurs + +{{Compat("api.TextMetrics.width")}} + +## Voir aussi + +- {{domxref("TextMetrics")}} |