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

Joris Heyndrickx
Joris Heyndrickx
2,939 Points

flexbox Challenge task 4 of 4

"Challenge task 4 of 4 Finally, let's reverse the column order by giving secondary the flexbox property and value that moves it to the beginning of the row."

.secondary { order: 1; }

is not correct? stuck. no code hint. nothing. bummer indeed. :-( sad face

2 Answers

Hi Joris,

the initial value for order is 0 so the secondary column needs to have a lower order number than that in order to be at the beginning.

order: -1;

Joris Heyndrickx
Joris Heyndrickx
2,939 Points

My bad. I looked it up and saw: order: <integer> assumed it could only be a positive integer.