Box Model
padding
Learn how to use the CSS padding property.
CSS padding
The padding property sets the padding for an HTML element.
Syntax
.element {
padding: 1rem;
}
HTML Context Example
<div class="card">
This is a styled element.
</div>
<style>
.card {
padding: 1rem;
}
</style>
Notes
Experiment in the CSS playground to see how this affects layout and styling.