Typography

font-size

Learn how to use the CSS font-size property.

CSS font-size

The font-size property sets the font size for an HTML element.

Syntax

.element {
  font-size: 16px;
}

HTML Context Example

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

<style>
.card {
  font-size: 16px;
}
</style>

Notes

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