We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
justify-items
<!DOCTYPE html> <div style="width: 200px; justify-items: right; border: solid"> <span style="justify-items: center"> <div>foo</div> </span> </div>
In Blink it looks like this:
So the <div>foo</div> is aligned to the start, ignoring both justify-items: right of the containing block and justify-items: center of the parent.
<div>foo</div>
justify-items: right
justify-items: center
https://drafts.csswg.org/css-align/#valdef-justify-self-auto says
It behaves as the computed justify-items value of the parent box
But I'm not at all convinced that this case was taken into account.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In Blink it looks like this:
So the
<div>foo</div>
is aligned to the start, ignoring bothjustify-items: right
of the containing block andjustify-items: center
of the parent.https://drafts.csswg.org/css-align/#valdef-justify-self-auto says
But I'm not at all convinced that this case was taken into account.
The text was updated successfully, but these errors were encountered: