The two properties flex-direction and
flex-wrap are used so often together that the
shorthand propety flex-flow was created
to combine them. This shorthand property accepts
the value of the two properties separated by a space.
For example, you can use flex-flow: row wrap
to set rows and wrap them.
Try using flex-flow to properly display frogs on the lily pads.
"Tip: frogs shoud sit in column"
#pond { display: flex;
}
Disclaimer!!: This is just a clone of one level from the Flexbox Froggy website. for the education purposes. all the rights remain to them. please visit their page to fully experience game itself.