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

flex-basis?

I am not getting what flex-basis generally do? Like whether it sets original width or when the width of the element is less than the size of flex-basis it will wrap?

Can someone please enlighten me may be with example or diagram?

1 Answer

Jamie Reardon
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Jamie Reardon
Treehouse Project Reviewer

The property sets the initial width of the flex-items, it overrides the width property (if set). If you have flex-wrap enabled, the flex-items will begin to wrap onto new lines when the flex-basis threshold hits that they can no longer fit onto one line based on the viewport width.