files/en-us/web/api/htmlimageelement/height/index.md
{{APIRef("HTML DOM")}}
The height property of the {{domxref("HTMLImageElement")}} interface indicates the height at which the image is drawn, in {{Glossary("CSS pixel", "CSS pixels")}}, if the image is being drawn or rendered to any visual medium such as a screen or printer. Otherwise, it's the natural, pixel density-corrected height of the image.
An integer value indicating the height of the image. The way the height is defined depends on whether the image is being rendered to a visual medium or not.
In this example, two different sizes are provided for an image of a clock using the srcset attribute. One is 200px wide and the other is 400px wide. Further, the sizes attribute is provided to specify the width at which the image should be drawn given the viewport's width.
For viewports up to 400px wide, the image is drawn at a width of 200px. Otherwise, it's drawn at 400px.
<p>Image height: <span class="size">?</span>px (resize to update)</p>
The JavaScript code looks at the height to determine the height of the image given the width at which it's currently drawn.
const clockImage = document.querySelector("img");
let output = document.querySelector(".size");
const updateHeight = () => {
output.innerText = clockImage.height;
};
updateHeight();
window.addEventListener("resize", updateHeight);
{{EmbedLiveSample("Examples", 640, 450)}}
This example may be easier to try out {{LiveSampleLink('Examples', 'in its own window')}}.
{{Specifications}}
{{Compat}}