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