flexboxfroggy icon indicating copy to clipboard operation
flexboxfroggy copied to clipboard

Level 24 too abrupt

Open solsend2l opened this issue 8 years ago • 16 comments

This is a really awesome tutorial, good job, thanks so much!

The only suggestion is warming up to level 24 combined concepts, especially wrap-reverse. That's pretty intense!

solsend2l avatar Dec 04 '15 19:12 solsend2l

Hi @solsend2l, thanks for your comments!

I agree that level 24 is pretty tough, but I intended it to be like that to give the opportunity to play around with all of the properties one last time, and as a "boss level" final challenge to add a sense of accomplishment.

I hope you found the previous 23 levels to have a smooth learning curve.

thomaspark avatar Dec 05 '15 08:12 thomaspark

Figure out that transform: scale(-1, 1) works as a replacement for flex-wrap: wrap-reverse. Only for this example as it's symmetrical.

NdYAG avatar Dec 05 '15 17:12 NdYAG

Honestly I had to cheat, look at code :tongue:

solsend2l avatar Dec 07 '15 14:12 solsend2l

Solve them all! Very nice play with the frogs. These ex will be played plenty of times

AndyHoang avatar Dec 10 '15 02:12 AndyHoang

Yeah, considering that no level prior to level 24 has you use wrap-reverse (it's just mentioned in the explanatory text without having the user try it), I think it's a little too abrupt. All that's needed is an additional level after the introduction of flex-wrap that demonstrates wrap-reverse interactively.

stuartpb avatar Dec 14 '15 17:12 stuartpb

Also, it wouldn't hurt to have a little buildup combining a few of the concepts before the final one - including one or two that combine order with things like flex-wrap.

stuartpb avatar Dec 14 '15 17:12 stuartpb

+1 Agreed. I think this would be be better with some more exercises. My brain went Woh! when I got to 24. I'm glad to find part of the answer here.

This is a fantastic tutorial, that still has so much more potential. I think as a learning site, a boss level shows its weaknesses, rather than what it can do for the student. A number of exercises up to the boss level would really reinforce the concepts and make them masters.

...tempted to fork and add some, myself.

gabrielkunkel avatar Dec 19 '15 18:12 gabrielkunkel

Yeah, I didn't even know wrap-reverse existed until I gave up and came here via the github link on the site.

I didn't think want to google for an answer since I thought I was taught everything I needed to know to complete the problem :(

@SergiOnGit Here's what I ended up with after learning about wrap-reverse:

flex-flow: column-reverse wrap-reverse;
justify-content: center;
align-content: space-between;

ghost avatar Jan 04 '16 19:01 ghost

I think having a wrap-reverse exercise somewhere before level 24 would ease the learning curve here.

jsnmoon avatar Dec 22 '16 00:12 jsnmoon

24 seems ok, for me.

based2 avatar Dec 22 '16 12:12 based2

@ghost thanks for the solution. I was not able to find it by myself.

Not sure to understand why is it the solution... Maybe provide solution with explanations could be useful in the game

MathRobin avatar Feb 27 '17 08:02 MathRobin

I agree 24 hit as a bit of a shock but it forced me to find the answer elsewhere and in the process found other resources.

esslamben avatar Sep 10 '17 23:09 esslamben

flex-flow: column wrap;
justify-content: center;
align-content: space-between;
transform: scale(-1, -1);

Upside down 🐸 working too :stuck_out_tongue_winking_eye:

krystian3w avatar Feb 27 '18 18:02 krystian3w

Besides the wrap-reverse, the true value of level 24 is I now know that with one class, you can do so much..... Otherwise, I will apply other class for the children.haha. Really thanks.

Albert-Gao avatar May 09 '18 09:05 Albert-Gao

I agree that level 24 is pretty tough, but I intended it to be like that to give the opportunity to play around with all of the properties one last time, and as a "boss level" final challenge to add a sense of accomplishment.

I like the concept of having a boss level, but I think there need to be just a few free-form exercises leading up to it.

aidalgol avatar May 29 '18 02:05 aidalgol

flex-direction: column-reverse; flex-wrap: wrap-reverse; justify-content: center; align-content: space-between;

rainstormza avatar Jun 26 '18 08:06 rainstormza