flex-grow Property

open_in_full
Defines ability of flex item to grow if necessary
calculate
Unitless value that serves as proportion
equalizer
Distributes available space along main axis
looks_one
Default value: 0 (items won't grow)
format_list_numbered
Items with higher values get more space
code flex-grow Examples
.item {
  flex-grow: 1; /* Will grow equally */
}

.special-item {
  flex-grow: 2; /* Will grow twice as much */
}
equalizer flex-grow: 1 (all items)
1
1
1
format_list_numbered flex-grow: 2, 1, 1
2
1
1
format_list_numbered flex-grow: 1, 2, 3
1
2
3