-
Star
(122)
You must be signed in to star a gist -
Fork
(7)
You must be signed in to fork a gist
-
-
Save lucprincen/9548ab19bfc34f10ef8a to your computer and use it in GitHub Desktop.
| flex-flow:column-reverse wrap-reverse; | |
| justify-content:center; | |
| align-content:space-between; |
At first I also forgot about the wrap-reverse but then I started rummaging at their CSS property descriptions and found out about the wrap-reverse thing.
(I read this only after solving this myself)
Thanks. I didn't know there was such thing as "wrap-reverse" and I didn't read the guide from previous levels properly. Lol
im hard worker not smart worker :,)
flex-flow: column wrap;
flex-direction: column-reverse;
align-items: flex-end;
justify-content: center;
align-content: space-between;
flex-wrap: wrap-reverse;
Thanks. I didn't know there was such thing as "wrap-reverse" and I didn't read the guide from previous levels properly. Lol
They didn't really mention wrap-reverse specifically, just that flex-flow is a combination of flex-wrap and flex-direction . It's really tricky to try the values of each property and know we can literally combine them into one (e.g. column-reverse)










Flexbox Properties Explanation