AWS Amplify - the fastest, easiest way to develop mobile and web apps that scale.
The align-items
property is related to CSS layout. It effects how elements are aligned both in Flexbox and Grid layouts.
align-items: flex-start | flex-end | center | baseline | stretch
.container {
display: flex;
align-items: flex-start;
}
The align-items
property defines the default behavior for how items are laid out along the cross axis (perpendicular to the main axis).
Imagine a horizontal flexbox layout. That horizontal flow is the main axis, so align-items is the alignment opposite that, on the vertical axis. Bear in mind that changes when the main axis changes, and the cross axis changes with it.
You can think of align-items
as the justify-content
version for the cross-axis (perpendicular to the main-axis).
The rest of this article is fairly focused on flexbox rather than grid. The concepts are still very similar, but there are some differences. For example, in flexbox, the axises can change, where in grid they cannot. That effects things like flexbox having values like flex-start
where in grid it is just start
.
The align-items
property accepts 5 different values:
flex-start
: cross-start margin edge of the items is placed on the cross-start lineflex-end
: cross-end margin edge of the items is placed on the cross-end linecenter
: items are centered in the cross-axisbaseline
: items are aligned such as their baselines alignstretch
(default): stretch to fill the container (still respect min-width/max-width)
The following figure helps understand how flex items are layed out depending on the align-items
value.
Demo
The following demo shows how flex items are layed out depending on the align-items
value:
- The red list is set to
flex-start
- The yellow list is set to
flex-end
- The blue list is set to
center
- The green list is set to
baseline
- The pink list is set to
stretch
Check out this Pen!
Related Properties
Other Resources
- align-items in the spec
- align-items at MDN
- Advanced cross-browser flexbox
- A guide to Flexbox
- Using Flexbox
- Old Flexbox and new Flexbox
Browser Support
- (modern) means the recent syntax from the specification (e.g.
display: flex;
) - (hybrid) means an odd unofficial syntax from 2011 (e.g.
display: flexbox;
) - (old) means the old syntax from 2009 (e.g.
display: box;
)
Chrome | Safari | Firefox | Opera | IE | Android | iOS |
---|---|---|---|---|---|---|
21+ (modern) 20- (old) |
3.1+ (old) | 2-21 (old) 22+ (new) |
12.1+ (modern) | 10+ (hybrid) | 2.1+ (old) | 3.2+ (old) |
Blackberry browser 10+ supports the new syntax.
For more informations about how to mix syntaxes in order to get the best browser support, please refer to this article (CSS-Tricks) or this article (DevOpera).
There is an edge case bug with Firefox and align-items: baseline.
https://bugzilla.mozilla.org/show_bug.cgi?id=1036404
Thank you very much
This training was very useful for me.
Question for you, on the codepen demo ‘baseline’ case, let’s say I wanted that 3rd green box to align to the “5” instead of the 4. How would I do that?
It looks like
flex-end
is now justend
I’m pretty sure that change is made in the CSS Box Alignment Module Level 3 Working draft and isn’t a candidate recommendation yet.
IMHO, they aren’t the same.