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 Status Comment
WHATWG HTML Living Standard
The definition of 'HTMLCanvasElement.height' in that specification.
Living Standard No change since the latest snapshot, HTML5
HTML5.1
The definition of 'HTMLCanvasElement.height' in that specification.
Working Draft  
HTML5
The definition of 'HTMLCanvasElement.height' in that specification.
Recommendation Snapshot of the WHATWG HTML Living Standard containing the initial definition.

Browser compatibility

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support 4 3.6 (1.9.2) 9 9 3.1
Feature Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support (Yes) (Yes) 1.0 (1.9.2) (Yes) (Yes) (Yes)

See also

Document Tags and Contributors

 Contributors to this page: fscholz, Nexii, teoli
 Last updated by: fscholz,