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