Created
April 23, 2025 23:38
-
-
Save AnmolShahid/819c959873d153aba0110dfb693a2b9f to your computer and use it in GitHub Desktop.
Flexbox Froggy Level 24 Solution
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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