-
Notifications
You must be signed in to change notification settings - Fork 704
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
[css-grid-3] Make align-self/justify-self align including adjacent extra space #10275
Comments
Oh yeah, that makes sense. You need it to work like this, in fact - you can't align the contents of the column as a whole, because spanning items cross columns. So it needs to align each contiguous run of single-column items. Does this then imply that spanning items can never be aligned in that axis? We don't otherwise meaningfully distinguish between a masonry of single-column items and an identical masonry with double the half-width columns and all items being two-column spanners, but I don't think I'm opposed to making that distinction. |
Generally supportive of the stretch capability. Two points:
|
By "flex behavior" you mean "treat %s as indefinite if they're resolving against an indefinite dimension" (and stretching doesn't make a dimension become definite). |
Oh, I didn't properly read the title - I don't think this is appropriate for *-self to do, for the same reason we don't let align-self work in Block Layout. I think this should be a *-content behavior. |
@tabatkins I think you're confused... this issue is about aligning only the last item adjacent to the gap above spanner, not the entire stack of items above the spanner. I agree that aligning the entire stack could be useful, too, but it runs into the problems @bfgeek outlined for #8207 which is why that feature was removed. (I thought it was a weird request at first, but then seeing Jen explaining why she needed it in her demos, it started to make sense why it would be useful to do this.) |
Oh, huh. Only aligning the last one seems fairly odd to me. Jen's examples look good and the use-cases are definitely reasonable, but all the images have only one element being affected, so it doesn't demonstrate the difference in question. If there were multiple elements, especially if there were 3+, I think it would look odd if all it did was change it from "the entire stack of elements is start-aligned" to "the entire stack of elements is start-aligned except for the last one, which is end-aligned". This seems extra true for
No, in that issue @bfgeek was objecting to the ability to align the contents of each track independently - giving one track start alignment, another end alignment, etc. He recognized the value in being able to align all the tracks in a given direction: "The use-cases I've seen here typically align masonry axis tracks together rather than individually." and the following paragraphs in his comment. Non-start alignments applied to the whole masonry can somewhat misalign the reading order from the dom order, but generally not to an enormous degree (and generally no more than what |
Ooh tho, this case does look pretty good, but isn't addressed by using This might argue, then, for a masonry-specific alignment property, which can distinguish between stacks which are touching spanners on only one side, and those actually wedged between spanners on both sides. An additional plus of that approach is we can then keep |
@tabatkins I think you're right that this needs the ability to select across what's at the top vs bottom of a stack of items. However I do think that adjusting just the one item, and not the whole stack, is reasonable here. You don't want the whole layout to shift as you're adding items, for example, but you might want to have the bottom row of items stretch to create a flat line--until more content loads in after it. I think the way to do this would be with
|
Hm, I don't think that quite works, but it's close. In particular, if you wanted to avoid ragged edges or holes, and only wanted to adjust the first/last items, then you'd want I think we need to play with the value space some more before we hit on the right answer. |
Doing some analysis of the issue, we believe that whatever behavior is expected from the alignment properties it can be accomplished by aligning stacks of items as a whole. Just to confirm that we share the same understanding, we consider that a stack of items is a group of all contiguous single-track items contained between the boundaries of either the masonry container or an item spanning multiple tracks. In the following figure, we highlight all different stacks of items in pink. Regardless of whether we want to align the stacks as a whole or only the first/last item within them, keeping track of these stacks is required in some capacity and it shouldn't shift layout. On the other hand, we believe that allowing self-alignment outside of these stacks will be problematic and should be avoided. Consider the following example: The pink and blue items have opposing alignment properties which have a non-intuitive interaction with each other. It only gets worse if we add more items to the stack pushing each other. We think that aligning the stacks as a whole is a superset of aligning the first/last item in a stack and should suffice to address the most interesting use case of avoiding holes between items or ragged edges at the end of the stacking axis. In order to avoid ragged edges at the end, one could expect Another example, avoiding holes using the Finally, without more concrete use cases for other property values, we don’t see how center or end make sense. We believe we only need to define some stretching capability to address gaps and revisit whenever is necessary. |
This came up earlier in discussions with @jensimmons and again when she was creating demos: spanning items create gaps above them, and it would be useful to be able to align within those gaps. In particular, applying
stretch
orend
alignment would improve the effects in demos such as https://webkit.org/demos/grid3/photos/ (e.g. in "Every 5th item").The proposal is to use the self-alignment properties in the masonry axis to align an item above a spanner or at the end of the masonry grid in the space allotted to it + the subsequent gap.
The text was updated successfully, but these errors were encountered: