DEV Community

Shefali
Shefali

Posted on • Updated on • Originally published at shefali.dev

13 Properties of CSS Flexbox You Must Know As A Beginner

Introduction to CSS Flexbox

The flexible box (flexbox) is a powerful CSS3 layout, which allows us to create responsive and mobile-friendly websites. With its wide browser support, Flexbox empowers developers to design and build dynamic web layouts. In this blog, you will get to know all the properties of CSS Flexbox.

The Main Axis and The Cross Axis

Flexbox operates along two axes:

  • main-axis
  • cross-axis

The main axis is set by the flex-direction property.

If the flex-direction is row then the main axis runs along the row and if the flex-direction is column then the main axis runs along the column.

The cross-axis runs perpendicular to the main axis. That means if the flex-direction is row then the cross-axis runs along the column and if the flex-direction is column then the cross-axis runs along the row.

CSS flexbox main and cross axis

Flex container

To create a flex container, simply apply the display: flex; property to the parent element. By doing this, all direct child elements transform into flex items. You can manipulate all these flex items using various flex properties.

Flex items can be blocks, inline blocks, or inline elements.

CSS flex container
Let’s see the properties of manipulating the flex items within the flex container.

Flex direction

Flex-direction property is used to set the direction of flex items. To set the direction use one of the following values with the property.

  • row
  • row-reverse
  • column
  • column-reverse By default, the items display as row. If you want to display the items as row, then you don’t need to add the flex-direction property.

CSS flex direction

Align items

The align-items property puts the flex-items along the cross-axis of the flex container. It provides the following values:

  • stretch – makes the height (row directions) or width of the items (column directions) equal to the size of the container.
  • center – puts the items in the center.
  • start or flex-start – puts the items from the start of the container.
  • end or flex-end – puts the items at the end of the container.
  • baseline – puts the items next to each other with their baselines being at the same position.

By default, its value is stretch.

CSS flexbox align-items

Justify content

The justify-content property puts the flex items along the main axis of the flex container. It provides the following values:

  • start or flex-start – puts the items from the start of the container.
  • end or flex-end – puts the items from the end of the container.
  • left – puts items on the left side of the container.
  • right – puts items on the right side of the container.
  • center – puts items around the container.
  • stretch – stretches the size of the items to fill the container.
  • space-between – puts the first item at the start and the last item at the end of the container and separates every item with an identical space.
  • space-evenly – puts the items within the container, ensuring they are evenly spaced from each other and the container’s edges.
  • space-around – puts the items with equal spacing, leaving a half-size gap on each end.

By default, its value is start.

CSS flexbox justify-content

Align content

If there is extra space along the cross-axis, then the align-content property helps to align the multiple lines of flex items.

For this to work, there should be multiple lines along the cross-axis. It provides the following values:

  • start or flex-start
  • end or flex-end
  • center
  • stretch
  • space-between
  • space-evenly
  • space-around

By default, its value is stretch.

CSS flexbox align-content

Align self

The align-self property is used to align a specific flex item. It provides the following values same as the align-items property.

  • stretch
  • center
  • start or flex-start
  • end or flex-end
  • baseline

CSS flexbox align-self

Flex wrap

By default, flex items are positioned in a single line within the flex container. However, when the screen size shrinks, these flex items may overflow. To prevent this, we can utilize the flex-wrap property.

It provides three values:

  • nowrap (default) – causes overflow of flex-items.
  • wrap – creates new rows to prevent overflowing of flex items.
  • wrap-reverse- works the same as a wrap, but the order of flex-items is reversed.

CSS flexbox flex-wrap

Flex grow

By using the flex-grow property, you can control the space taken up by a flex item. To configure it, you can give it a number between 0 and 1. The default value is 0.

When the flex-grow property is applied to multiple flex-items then any additional space will be distributed proportionally according to their respective flex-grow values.

CSS flexbox flex-grow

Flex shrink

By using the flex-shrink property, you can control how flex items behave when the available space in the flex container is insufficient, i.e. flex-items are too big for their container. To configure it, you can give it a number value. The default value is 1.

If you give it the value 0, then the flex item will not shrink.

If one item has flex-shrink: 1; and the second time has flex-shrink: 2; then the second item will shrink twice as much as the first item.

CSS flexbox flex-shrink

Flex basis

By using the flex-basis property, you can set the initial size of flex items within a flex container along the main axis.

In other words, if the flex-direction is a row, then the flex-basis does the same thing as width and if the flex-direction is a column, then the flex-basis does the same thing as height.

CSS flexbox flex-basis

Flex order

Flex items are arranged within a flex container according to the HTML code. The Document Object Model (DOM) (using CSS) can be manipulated by using the flexbox order property.

The order property only accepts whole numbers within the range of the maximum number of flex items.

If a negative value is assigned to the flex item, then the element will be positioned as the first item.

Gaps

The gap property is used to specify the space between flex items.

You can provide different values for row and column gaps. If only one value is provided, it is applied to both the row and column gaps.

CSS flexbox gaps

Conclusion

CSS Flexbox provides developers with a powerful and intuitive way to create responsive and flexible web layouts. By understanding the fundamental concepts and properties of Flexbox, developers can achieve stunning visual effects and adaptable designs across a wide range of devices and screen sizes. So, dive into Flexbox, experiment with its properties, and unlock a world of endless possibilities for your web projects.

Thanks for reading.

For more content like this click here.

Keep Coding!!
Buy Me A Coffee

Top comments (0)