Course Content
CSS Fundamentals
CSS Fundamentals
Aligning Items Vertically
The align-items
property governs the vertical arrangement of flex items. Its default value is stretch
.
Let's run the following examples to get where do we need it.
stretch
It means that we extend items to the entire length of the cross axis.
index.html
index.css
center
Items are in the center of the cross axis.
index.html
index.css
flex-start
All items start at the beginning of the cross axis.
index.html
index.css
flex-end
All items are in the end of the cross axis (in the end of the parent flex container).
index.html
index.css
baseline
All flex items are aligned based on their text content baseline.
index.html
index.css
1. What does the align-items
property do?
2. Which of the following values can be used with the align-items
property?
Everything was clear?
Thanks for your feedback!
Section 4. Chapter 4