-
Notifications
You must be signed in to change notification settings - Fork 705
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][masonry] Reordering threshold #9328
Comments
I am all for allowing to providing a way to influence the threshold. As with most properties, the default should be And it's probably too early to bikeshed but it might not be clear for authors what that threshold is meant for. So maybe it should be made more obvious by adding another word in between, e.g. Sebastian |
Probably terrible bikeshedding ideas: |
Staircase problem: Tracks heights:
Selecting |
@bfgeek Naively, if slack is 10px, you'd end up picking the 90px column, no? |
The CSS Working Group just discussed
The full IRC log of that discussion<TabAtkins> fantasai: In an earlier issue Ian suggested there should be some control over high sensitive masonry is to exact height differences<TabAtkins> fantasai: Like if all your items are identical in size you'll lay out your content in perfect rows, straight across <TabAtkins> fantasai: But if it's different sizes, column 2 was a little bit taller, you might skip from column 1 to column 3 <TabAtkins> fantasai: Ian suggested it might be useful to tweak the sensitivity so it's not just "is the difference 0", but to allow some amount of fudge factor <TabAtkins> fantasai: So if the column 2 is only 10 px taller than column 1 and 3, you don't skip it, you place 1-2-3 <TabAtkins> fantasai: So do we want to add a control? Presuambly takes a length which is the fudge factor. And what do we call it? <khush> q+ <TabAtkins> +1 to adding it <TabAtkins> unsure about name, don't like any of the suggestions :/ <TabAtkins> khush: Have you seen use-cases where this is needed? <TabAtkins> fantasai: The case Ian pointed out is - when you jump, it's harder to follow what's next. If you jump less often it's better to navigate for the user <fantasai> One issue with masonry style layouts is that things can easily be visually out of order, e.g. if the current tracks are [100px, 99px] the next masonry item would be placed in the 2nd track, when the first would be more natural. A potentially solution to this is some user defined "threshold" to "place within the first track within Xpx of the smallest track" <Rossen_> ack khush <fantasai> masonry-threshold: <length> <fantasai> -- iank <TabAtkins> q+ <Rossen_> ack TabAtkins <fantasai> TabAtkins: Use case is as described, when the mortar columns are fairly ragged, it's fine to track across columns <fantasai> TabAtkins: when there is some sort of order <fantasai> TabAtkins: but when differences are very small, looks very strange to skip over something <iank_> One important note as well is the simple algorithm for this doesn't work - there is a staircase case where the simple algorithm doesn't work. <fantasai> TabAtkins: if your column height differences are minimal, it looks weird to have a gap <fantasai> TabAtkins: better to have gap at the end of the row instead <fantasai> TabAtkins: this is an ability that masonry libraries have; not sure how common, but definitely some <TabAtkins> iank_: [restates irc comment] <TabAtkins> iank_: where even if all the tracks are off by 1px it looks very strang eto select the first one <TabAtkins> iank_: So there needs to be a precise algorithm written that tests against the cases <SebastianZ> q+ <Rossen_> ack SebastianZ <TabAtkins> SebastianZ: so we're just talking about regarding the height of the already palced content? <TabAtkins> fantasai: right <fantasai> masonry-slack? <astearns> we should look to see what the masonry libraries use <TabAtkins> TabAtkins: I think we can resolve to add this ability. Should discuss names, all the ones in the issue are more complex words than I like to use in properties <TabAtkins> TabAtkins: But I really like the masonry-slack fantasai just suggested <TabAtkins> proposed resolution: Accept some form of masonry slack property; exact algo TBD; exact name TBD <TabAtkins> RESOLVED: Accept some form of masonry slack property; exact algo TBD; exact name TBD <TabAtkins> Agree with astearns we should do a quick survey to see if libs have consistency in naming |
Yeah, my initial though on the algorithm would just be "among all the columns within slack distance of the shortest column, place in the startmost" (or whatever direction you're filling in), so in that example the columns from 90px to 80px would all be valid, and we'd place in the 90px column. This would just be a trivial adjustment from the current rule, which is to select the startmost among all the identically-shortest columns. |
As argued in #10232 (comment), this doesn't seem right.
So it ends up being super weird:
I think it should actually be:
Then It would also match Firefox here (with the initial <style>
.grid {
display: inline-grid;
grid: masonry / repeat(3, 2ch);
border: 1px solid;
}
item {
border: 1px solid;
}
</style>
<div class="grid">
<item style="grid-column: 2">1</item>
<item>2</item>
<item>3</item>
</div>
But it would differ from both when adding a 4th item:
|
Yeah, you're right, my proposed algo was bad. Masonry naturally displays a desirable "fill start-to-end" behavior when items are all the same size, and a small threshold just puts a little flexibility into that behavior; a large threshold should give it large flexibility, rather than drastically changing the behavior to something completely different. I don't really like the behavior of your algo when explicitly-placed items get into the mix, tho. I've been playing around with it a bit, and I think we get the best results if we just don't update the "last placed" cursor for explicit items. I got sniped and wrote up a live example of the layouts to play around with. |
@tabatkins From https://drafts.csswg.org/css-grid-3/#masonry-layout-algorithm
So I think the outcomes would be different? Though with <style>
.grid {
display: inline-grid;
grid: masonry / repeat(5, 2ch);
masonry-auto-flow: next;
border: 1px solid;
}
item { border: 1px solid; }
item:nth-child(2) { grid-column: 4; }
</style>
<div class="grid">
<item>1</item><item>2</item><item>3</item><item>4</item><item>5</item>
<item>6</item><item>7</item><item>8</item><item>9</item><item>10</item>
</div>
Anyways I don't have a strong opinion about explicitly placed items. |
Ah, sorry, I was assuming |
@Loirooriol Tab drafted and I edited in the proposal for a |
csswg-drafts/css-grid-3/Overview.bs Line 732 in ffda3a6
This should be a computed csswg-drafts/css-grid-3/Overview.bs Line 787 in ffda3a6
I think this is step 1 now. Otherwise it looks reasonable. I have also filed some follow-up issues: |
csswg-drafts/css-grid-3/Overview.bs Line 733 in ffda3a6
Is this deliberate? It's surprising to see a |
Thanks for the review, @Loirooriol! We fixed these. Closing out the issue. |
The animation type still seems wrong: #10931 |
In #9041 @bfgeek suggested that there be some control over how sensitive masonry layout is to inherent order vs height differences in already-placed content.
E.g. adding a property like
masonry-threshold: <length>
where we only skip over a column if the next column is<length>
less than or equal to the specified value.The text was updated successfully, but these errors were encountered: