CSS Flexbox Froggy: Can't get code solutions

I am using Flexbox Froggy. The Flexbox game where you use the correct css to move the frogs the lily pads. (http://flexboxfroggy.com/)

When I am not able to figure out the correct css, I advance to the next
level. The game shows the answer in the graphic, but doesn’t show
the correct code solution, so that I can see my mistake.
Thank you

You have to use both justify-content and align-items.

Hint: you want to space them and you want them at the end :wink:

And if the hint isn’t enough

Answer
``` justify-content: space-around; align-items: flex-end; ```

I came across the below pdf which should help with flex

flexboxsheet.pdf (955.8 KB)

3 Likes

Thank youII

Thank you, great information

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.