-
-
Notifications
You must be signed in to change notification settings - Fork 32.5k
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
[system] Missing documentation in flex-box #29050
Comments
Note that |
If we want to be exhaustive, we would need to cover: justify-content: center;
justify-content: start;
justify-content: end;
justify-content: flex-start;
justify-content: flex-end;
justify-content: left;
justify-content: right;
justify-content: normal;
justify-content: space-between;
justify-content: space-around;
justify-content: space-evenly;
justify-content: stretch;
justify-content: safe center;
justify-content: unsafe center;
justify-content: inherit;
justify-content: initial;
justify-content: revert;
justify-content: unset; So I would suggest we don't list everything. We could:
maybe we should follow this style https://mui.com/system/grid/#grid-template-columns cc @danilo-leal. |
Can I work this? |
@oliviertassinari @siriwatknp I was able get this working locally:
Before I go ahead and submit a PR, should I apply this same Box item styling to everywhere else where we have these boxes? (all the other flexbox examples have the item box with gray background) |
Expected Behavior:
I expect to see all the
justifyContent
options likespace-between
andspace-evenly
on https://mui.com/system/flexbox/Actual Behavior
I do not see examples or documentation for
space-between
orspace-evenly
I'm new to MUI and only found out about these options from a MUI veteran user.
The text was updated successfully, but these errors were encountered: