Level 10 flex-end correct?
doungen opened this issue · comments
doungen commented
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
I didn't see the obvious, flex-direction:row-reverse of course changes the direction.