The CanvasRenderingContext2D.wordSpacing
property of the Canvas API specifies the spacing between words when drawing text.
This corresponds to the CSS word-spacing
property.
The CanvasRenderingContext2D.wordSpacing
property of the Canvas API specifies the spacing between words when drawing text.
This corresponds to the CSS word-spacing
property.
The word spacing as a string in the CSS length data format. The default is 0px
.
The property can be used to get or set the spacing. The property value will remain unchanged if set to an invalid/unparsable value.
In this example we display the text "Hello World" three times, using the wordSpacing
property to modify the spacing in each case. The spacing is also displayed for each case, using the value of the property.
html
<canvas id="canvas" width="700"></canvas>
js
const canvas = document.getElementById("canvas"); const ctx = canvas.getContext("2d"); ctx.font = "30px serif"; // Default word spacing ctx.fillText(`Hello world (default: ${ctx.wordSpacing})`, 10, 40); // Custom word spacing: 10px ctx.wordSpacing = "10px"; ctx.fillText(`Hello world (${ctx.wordSpacing})`, 10, 90); // Custom word spacing: 30px ctx.wordSpacing = "30px"; ctx.fillText(`Hello world (${ctx.wordSpacing})`, 10, 140);
Specification |
---|
HTML Standard # dom-context-2d-wordspacing |
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
wordSpacing |
99 | 99 | 115 | No | 85 | No | 99 | 99 | 115 | 68 | No | 18.0 |
© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/wordSpacing