HTMLCanvasElement.height
The HTMLCanvasElement.height
property is a positive integer
reflecting the height
HTML attribute of the <canvas>
element interpreted in CSS pixels. When the attribute is not specified, or if it is set to an invalid value, like a negative, the default value of 150
is used.
This is one of the two properties, the other being HTMLCanvasElement.width
, that controls the size of the canvas.
Syntax
var pxl = canvas.height; canvas.height = pxl;
Examples
Given this <canvas>
element:
<canvas id="canvas" width="300" height="300"></canvas>
You can get the height of the canvas with the following code:
var canvas = document.getElementById('canvas'); console.log(canvas.height); // 300
Specifications
Specification |
---|
HTML Standard (HTML) # dom-canvas-height |
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
height |
1 |
12 |
1.5 |
9 |
9 |
3 |
1 |
18 |
4 |
10.1 |
1 |
1.0 |
See also
- The interface defining it,
HTMLCanvasElement
. - The other property controlling the size of the canvas,
HTMLCanvasElement.width
.
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement/height