Skip to content

Instantly share code, notes, and snippets.

@AnmolShahid
Created April 23, 2025 23:38
Show Gist options
  • Save AnmolShahid/819c959873d153aba0110dfb693a2b9f to your computer and use it in GitHub Desktop.
Save AnmolShahid/819c959873d153aba0110dfb693a2b9f to your computer and use it in GitHub Desktop.
Flexbox Froggy Level 24 Solution
Flexbox Froggy
Bring the frogs home one last time by using the CSS properties you've learned:
justify-content
align-items
flex-direction
order
align-self
flex-wrap
flex-flow
align-content
###SOLUTION
pond {
display: flex;
justify-content:center;
align-content:space-between;
flex-wrap:wrap-reverse;
flex-direction:column-reverse;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment