Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS CSS Layout Techniques Flexbox Layout Flexbox Layout Challenge

Difference between flex:1 and flex-grow:1

I've noticed flex:1 will make sure all the flex-items are the same width, however, flex-grow: 1 seems to be doing something else?

2 Answers

Codin - Codesmite
Codin - Codesmite
8,600 Points

"flex" is the shorthand for flex-grow, flex-shrink and flex-basis.

For example instead of using:

.example{
  flex-grow: 1;
  flex-basis: 100px;
}

You can use the shorthand instead:

.example{
  flex: 1 100px;
}

Thanks Ashley!

I still don't quite understand why flex: 1, does something different to flex-grow: 1!

Cheers,

Seb

Codin - Codesmite
Codin - Codesmite
8,600 Points

I have realised what causes the difference your are seeing:

If you use:

flex: 1;

It automaticaly defines flex-basis: 0, without having to define it as "flex: 1 0;"

but if you use:

flex-grow: 1;

On its own it will look different to "flex: 1;" because the basis isn't set.

If you use:

flex-grow: 1;
flex-basis: 0;

You will find that they are identical.

Codepen example: http://codepen.io/anon/pen/EarMpX

Cheers! Nice thorough explanation.