thomaspark / flexboxfroggy

A game for learning CSS flexbox 🐸
https://flexboxfroggy.com
MIT License
6.8k stars 673 forks source link

Level 10 flex-end correct? #234

Closed doungen closed 1 year ago

doungen commented 1 year ago

Hi, in level 10 the value flex-end aligns the items on the left side and flex-start on the right. Shouldn't it be the other way?

Correct answer for level 10 is: #pond { display: flex; flex-direction:row-reverse; justify-content:flex-end; }

Thanks

doungen commented 1 year ago

I didn't see the obvious, flex-direction:row-reverse of course changes the direction.