Box Model

height

Learn how to use the CSS height property.

CSS height

The height property sets the height for an HTML element.

Syntax

.element {
  height: 100px;
}

HTML Context Example

<div class="card">
  This is a styled element.
</div>

<style>
.card {
  height: 100px;
}
</style>

Notes

Experiment in the CSS playground to see how this affects layout and styling.