Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Level-10 justify-content value issue #269

Open
HARSHVERDHAN84 opened this issue Feb 5, 2024 · 1 comment
Open

Level-10 justify-content value issue #269

HARSHVERDHAN84 opened this issue Feb 5, 2024 · 1 comment

Comments

@HARSHVERDHAN84
Copy link

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
@HARSHVERDHAN84 HARSHVERDHAN84 changed the title Level-10 justify-content value syntax issue Level-10 justify-content value issue Feb 5, 2024
@thomaspark
Copy link
Owner

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants