Box Model

box-sizing

Learn how to use the CSS box-sizing property.

CSS box-sizing

The box-sizing property sets the box sizing for an HTML element.

Syntax

.element {
  box-sizing: border-box;
}

HTML Context Example

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

<style>
.card {
  box-sizing: border-box;
}
</style>

Notes

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