Skip to content

Instantly share code, notes, and snippets.

@lucprincen
Last active April 26, 2024 03:30
Show Gist options
  • Star 118 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save lucprincen/9548ab19bfc34f10ef8a to your computer and use it in GitHub Desktop.
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;
@TheSaviourEking
Copy link

Thanks, this helped me out today!

Thanks alot guys

@mayerlyab
Copy link

Hello, my solution is:

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

@ayamba-coder
Copy link

lol, i missed the justify:center

@sandip3
Copy link

sandip3 commented Jun 17, 2023

Hello, my solution is:

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

@felipejoq
Copy link

wrap-reverse it is property i didn't know, thanks!

@BhanuPrakash987
Copy link

Its actually 4 lines not 3
flex-flow:column-reverse wrap-reverse;
justify-content:center;
align-content:space-between;
align-items: start

@SaarimZaid
Copy link

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

@ronaldgj
Copy link

ronaldgj commented Aug 2, 2023

It is valid! 😅

Scherm­afbeelding 2023-08-02 om 15 56 50

@yummyicecream
Copy link

thnks

@an1sshhh
Copy link

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

@hiteshpatil912
Copy link

Hi, my solution is:

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

@AmigosKazz
Copy link

Hi, my solution is:
flex-flow: column-reverse wrap-reverse;
justify-content: center;
align-items: flex-end;
align-content: space-between

@Hidoreen
Copy link

It is valid! 😅

Scherm­afbeelding 2023-08-02 om 15 56 50

How did you get your frogs upside down lol

@BEikhout
Copy link

lmao froggies flipping

@dianavidal97
Copy link

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

@owenn2106
Copy link

owenn2106 commented Oct 4, 2023

I didn't know about wrap-reverse, so I did it with

flex-flow: row-reverse wrap;
align-content: space-between;
justify-content: center;
transform: rotate(90deg);

Haha pretty hacky but oh well got through it.

@ihavefoxdie
Copy link

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

@Subhan245
Copy link

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

@ubongn
Copy link

ubongn commented Oct 16, 2023

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

@sameerkali
Copy link

That's my solution

image

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

@sameerkali
Copy link

It is valid! 😅
Scherm­afbeelding 2023-08-02 om 15 56 50

How did you get your frogs upside down lol

😂😂😂😂😂 LOL

@tejalbangali
Copy link

Here is my solution -
It's really easy, just some trial and error methods with the CSS will get you close to the solution.

Screenshot 2023-10-27 171954

@skyisnotthelimit-fr
Copy link

Haha, I must say, the frog flipping with "transform" is pretty creative!

I did it with 3 lines, which is still valid :

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

BUT, you could also do it in this way if you must solve it in 4 lines:

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

"flex-flow" is basically a shortcut if you want to use flex-direction & flex-wrap at the same time :)

@Halcyon666
Copy link

Here is my solution - It's really easy, just some trial and error methods with the CSS will get you close to the solution.

Screenshot 2023-10-27 171954

IMG_0313

the same we are.

@yoyford
Copy link

yoyford commented Feb 10, 2024

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

here's mine

@sayak2k1maruti
Copy link

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

@termos22
Copy link

It is valid! 😅
Scherm­afbeelding 2023-08-02 om 15 56 50

How did you get your frogs upside down lol

look at first and last line of code.

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

if you remove both -reverse in first line
and add

rotate: 180deg;

at the end you will achieve rotated valid solution

@shaeakh
Copy link

shaeakh commented Mar 10, 2024

thanks a lot i missed the
align-content:space-between;
Screenshot (24)

@mukarramjavid
Copy link

It is valid! 😅

Scherm­afbeelding 2023-08-02 om 15 56 50

😅😅😅😅

@linj121
Copy link

linj121 commented Mar 29, 2024

rotate: 180deg; lmao😅

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment