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