Typography

line-height

Learn how to use the CSS line-height property.

CSS line-height

The line-height property sets the line height for an HTML element.

Syntax

.element {
  line-height: 1.5;
}

HTML Context Example

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

<style>
.card {
  line-height: 1.5;
}
</style>

Notes

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