thomaspark / flexboxfroggy

A game for learning CSS flexbox 🐸

Home Page:https://flexboxfroggy.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Level-10 justify-content value issue

HARSHVERDHAN84 opened this issue · comments

There is syntax error in justify-content value
I think Correct syntax is justify-content: flex-start
Not justify-content: start
Screenshot 2024-02-05 at 5 19 21 PM

Screenshot 2024-02-05 at 5 20 58 PM

Both of these solutions will work:

flex-direction: row-reverse;
justify-content: flex-end;
flex-direction: row-reverse;
justify-content: start;

start is a newer value for justify-content that shifts all flex items to the start according to the text direction, while ignoring any reverses.