thomaspark / flexboxfroggy

A game for learning CSS flexbox 🐸
https://flexboxfroggy.com
MIT License
6.88k stars 674 forks source link

Level-10 justify-content value issue #269

Open HARSHVERDHAN84 opened 8 months ago

HARSHVERDHAN84 commented 8 months ago

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
thomaspark commented 8 months ago

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.