Back to Home

Flexbox Item Properties

Learn about all the properties that can be applied to flex items.

Interactive Demo

Adjust the properties below to see how they affect the highlighted flex item.

0
0
1

Generated CSS

.flex-item {
  order: 0;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  align-self: auto;
  
  /* Shorthand */
  flex: 0 1 auto;
}

Preview

1
2
3
4
5

The yellow-bordered item (3) has the custom flex properties applied.

Detailed Explanations