Hero Image

Bharati Subramanian

A Web Developer in the making who's passionate about programming, music, and books.

CSS Flexbox: Flex-Item Properties

What is Flexbox CSS?

It is a responsive design layout that distributes elements within their parent container, even if the size of items is unknown or dynamic (hence the term "flex").

  • In the previous post, I covered all the properties that are applied to the parent flex container item.
  • To reiterate, these are the properties applied to flex container (parent):
    • display
    • flex-direction
    • flex-wrap
    • flex-flow
    • justify-content
    • align-items
    • align-content
  • For detailed explanation, go through this post

    In this post, we will go through the properties that are applied to flex items (children of flex parent container).

Find the demo for Flex item properties demo here

Find the demo code here