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