thomaspark / flexboxfroggy

A game for learning CSS flexbox 🐸

Home Page:https://flexboxfroggy.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Level 10 flex-end correct?

doungen opened this issue · comments

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

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