CodeNewbie Community 🌱

Cover image for CSS Flexbox: align-items
Ayu Adiati
Ayu Adiati

Posted on • Originally published at adiati.com

CSS Flexbox: align-items

Hello Fellow Codenewbies 👋

By default, flex is stretching the height of the items based on the highest item.

default.jpg

But when we need to, we can control the vertical position (cross axis) of the items with align-items.


Controlling The Vertical Position of Flex Items

align-items property is good to be applied when we have an element that has background color/shadow/borders so we can see the effect.

The Values of align-items

flex-start

It aligns the items on the top (start) of the flex container, and the height of each item is maintained as it is.
⭐ This value is used most often to control the vertical position of flex items.

flex-start.jpg

center

It aligns the items vertically on the center of the flex container.

center.jpg

flex-end

It aligns the items on the bottom (end) of the flex container.

flex-end.jpg

stretch

This is the default value of align-items.
It stretches the height of the items based on the highest item.
Usually, it is used if we need to reset or override an applied value.

stretch.jpg

baseline

It aligns the items based on the first line of texts to be in line with each other.
This value is barely used and we only can see the effect when we have elements with text in them.

baseline.jpg

Playground

I provide here the Codepen for you to play around with.

Conclusion

  • align-items property works with cross axis (vertical position) and is used when we want or need to control the vertical position of flex items in a flex container.

  • The values of align-items that we need to know are:

    • flex-start
    • center
    • flex-end
    • stretch (default)
    • baseline

Top comments (0)