Closed MatsPalmgren closed 4 years ago
I'm liking this quite a bit!
Just to be clear, the masonry axis has no explicit tracks, right? Everything's effectively placed into implicit tracks?
I'm not sure I understand from this description how auto-placed items interact with definite-placement items. In your first example, what would happen if item 4 said "grid-column: 2;"? What about item 2 or 6? Do they just get placed after all the masonry-placed items, which are presumably all in the first implicit column?
For repeat(auto-fit), is there really a case that would differ here? An empty track would be at minimum run, right, so the only way it could possibly be empty is if there just aren't enough elements in the grid to reach that track; there's no dependence on the layout size of the elements. Am I missing an interaction here?
Just to be clear, the masonry axis has no explicit tracks, right? Everything's effectively placed into implicit tracks?
Right, the line name resolution + "hypothetical grid-placement" steps are done as if masonry
were none
. Note that this grid is an illusion though, there are no tracks in the masonry axis. The purpose of the grid-placement step is to resolve (some) auto-positioned items into definite tracks in the grid-axis for the intrinsic track sizing step. Only items placed into the hypothetical first implicit track keep their resolved auto-position, other auto-placed items don't. The subset of items with a definite position in the grid-axis goes into the track sizing step and contributes to the intrinsic sizing. So for example:
<style>
.grid {
display: inline-grid;
grid: masonry / auto;
}
x { background: silver; }
y { background: lime; width:100px; grid-row: 1; }
</style>
<div class="grid">
<x>x</x>
<y>y</y>
</div>
This makes the column size 100px. Removing grid-row: 1
makes is the size of "x" and the y element overflows.
Currently, I'm also handling the items that are were placed at first implicit line specially in the masonry layout step. They are sorted before other items and they all start at position zero. This has two effects, a) you can make these items in this first hypothetical track intentionally overlap. E.g., using grid-area: 1/1
above and adding more <y>
items would make them all overlap. This may not seem very useful at first glance, but it's actually quite useful in creating a stacked tab-panel type of layout where you want the size to be the maximum of the children. (<x>
would then follow after the largest <y>
). And b) it moves the <y>
element to the start, which seems like the least surprising layout.
I'm not sure I understand from this description how auto-placed items interact with definite-placement items.
Items with an auto-placement in the grid-axis gain a definite placement only if they end up in the first hypothetical track in the masonry axis. Otherwise, they are still considered auto-placed and will not contribute to track sizing. There's a sorting step before masonry layout starts. The masonry-auto-flow: [ definite-first | ordered ]
controls if items with a non-auto grid-axis placement should be placed first or not (the actual line number isn't considered just if it's auto or non-auto, the set is already sorted in order-modifed document order to begin with and this is a stable sort).
In your first example, what would happen if item 4 said "grid-column: 2;"? What about item 2 or 6?
No change. No change. With grid-column: 2
on item 6:
In the above: items 1,2,3 are attached the first implicit line in the masonry axis, so they are placed first. Then item 6, because it has a definite placement in the grid-axis. Then 4 and 5 since the are auto-placed in the grid-axis. Items 1,2,3 and 6 have a definite grid-axis placement when masonry layout starts so we simply position them in the requested column at the minimum position possible for its span extent.
That's the behavior with masonry-auto-flow: definite-first
which is the default. With masonry-auto-flow: ordered
you get:
Do they just get placed after all the masonry-placed items, which are presumably all in the first implicit column?
Yes, all items with definite placement first, then auto-placed. The auto-placed items don't really have a column yet. It's resolved by the masonry layout step while honoring the masonry-auto-flow: [ pack | next ]
preference for the positioning.
So, perhaps it's confusing to use the term track at all in the masonry axis since there really aren't any tracks there. It's a continuous layout. I think it's still useful to have a "first implicit line" there though. It's convenient for intrinsic sizing purposes with auto-placed items, and it allows overlapping items at this line.
It's also useful to have a line at the start/end of the items in the masonry axis for abs.pos. items to align to, although I'll punt on the exact details of that for a bit. (Currently, I'm resolving grid-row:auto/1
from the padding edge to the start of the first implicit line, and N > 1
to the last implicit line.)
Example:
<style>
.grid {
display: inline-grid;
grid: masonry / 100px;
padding: 40px;
position: relative;
border: 1px solid;
}
a {
position:absolute;
inset: 10px;
border: 3px dashed red;
}
y { background: lightgrey; }
</style>
<div class="grid">
<y>y</y><y>y</y><y>y</y>
<a></a>
<a style="grid-row-end: 1; border-color: blue"></a>
<a style="grid-row-start: 2; border-color: black"></a>
</div>
Result:
For repeat(auto-fit), is there really a case that would differ here? An empty track would be at minimum run, right
Correct.
so the only way it could possibly be empty is if there just aren't enough elements in the grid to reach that track; there's no dependence on the layout size of the elements.
Consider:
<style>
.grid {
display: inline-grid;
grid: masonry / repeat(auto-fit, 100px);
width: 300px;
border: 1px solid;
}
x { background: silver; }
</style>
<div class="grid">
<x>1</x>
<x>2</x>
<x style="grid-column:span 2">3</x>
</div>
Item 1 and 2 have equal height so masonry layout places item 3 in column 1 (it doesn't fit in column 3 since it has span 2
and the grid only has 3 columns). With <x style="height: 4em">1</x>
though, the desired result is that item 3 is placed in column 2. We don't know until after we have flowed and placed all items preceding item 3 whether it's the former or latter case.
I've made a demo of a couple of fragmentation tests.
A grid with masonry layout in the inline-axis, fragments like this.
A grid with masonry layout in the block-axis, fragments like this.
I made the items that are fragmented keep its fragments in the same grid-axis track (so they should line up in paged media), whereas items that are pushed (break before due to break-inside:avoid
) are masonry-placed in the next container fragment. Does this make sense? Or should we perhaps freeze the first pushed item (for each track) to the track it came from and just place the rest?
Robert Utasi suggested that alignment in the masonry-axis per grid-axis track could be useful too. I said above that "Alignment in the masonry-axis is applied to the content as a whole (same as for a block container in the block-axis).", but perhaps doing it per track is actually a better default. I can see both being useful though.
A problem with doing the alignment per axis is that if there are items that span 2 or more grid-axis tracks then it's very likely that we'll make items overlap each other. It should work fine when all items are non-spanning though, which I guess is quite common in practice. Still, I think the align-per-axis feature should probably be opt-in to avoid that footgun. So we need an extension to css-align like justify/align-content: ... || per-track
or something. A few examples to illustrate (grid container's content area is grey, the masonry axis is the block axis):
Alternatively, a new property to control the track- and content-area alignment independently instead of the more limited per-tracks
keyword:
I think having separate properties for alignment within the tracks in the masonry axis is the way to go. It gives authors very good control over the final layout. I've updated the original description above with the details.
I've updated the proposal above with align/justify-tracks:stretch
that can be used to fill tracks in the masonry axis by stretching items.
I've updated the proposal above with some notes on performance and graceful degradation.
I love that this is getting attacked from a proposal perspective! Thanks so much for spinning this up and putting so much great thought into it 👍
I have a question around whether or not masonry fits better into a flexbox mentality than grid. To me, grid creates rows and columns, and it does so by drawing lines and fitting cells into those lines (this isnt an exact definition but I believe they are tenants). Where flex allows for more intrinsic layouts that have no lines, but does have an axis. Masonry is a combo of both in most cases, where columns are desired (so vertical lines) but no horizontal lines, as all items can have their own intrinsic height.
In this above Pinterest masonry layout (arguably the most famous and shining example of why/when this is effective Ui/UX) there are no visible row lines, and I believe if you added them it would move the layout more towards "packery" than masonry. Grid can already make great "dense" packery type layouts, where row/column lines are super useful. While flexbox and css columns can do types of packery (example 2) and masonry (example 1), they can't properly layout as you've shown, 1, 2, 3 children are the first in the columns.
TLDR; masonry shares more with flexbox than grid in my opinion I'm curious if this assertion can help shape this proposal? also, maybe a new display type would be better, since I feel like masonry has hybrid properties of grid and flex. save us from overloading grid or flex by putting the uniqueness into a new display type?
Those are my thoughts, hope they're helpful!
Example #1: flex masonry by setting container height
Example #2: flex packery by setting container height
Example #3: css columns masonry
Notice how not 1 demo has a shared row line anywhere. I believe this to be the defining feature of masonry and I believe it conflicts with putting masonry into css grid. thoughts!? thanks for letting me vent the thought stream.
I’m with @argyleink: I find it weird that the resulting layout is not a grid but is still invoked using display: grid
. All the layouts remind me a lot more of Flexbox than Grid.
@argyleink argyleink
Notice how not 1 demo has a shared row line anywhere. I believe this to be the defining feature of masonry and I believe it conflicts with putting masonry into css grid.
The proposal here is to define a "one-dimensional grid", so that you have tracks in just one axis and a continuous flow (stacking blocks one after another) in the other. So indeed, there are no "shared row lines" anywhere in the masonry axis (except at the start edge perhaps). It seems to me this is precisely what masonry layout is about, one axis has grid-like properties (tracks), while the other axis has a continuous flow (in each track separately).
I considered using flexbox instead, but I came to the conclusion that Grid is the ideal fit since all the complicated stuff is in the grid-axis and we get that for free with Grid. The layout in the masonry axis is trivial in comparison. As I see it, re-using well-known concepts from Grid is a benefit to everyone: spec authors can re-use large parts of the Grid (and Box Alignment) specs (blockification of items, item placement/spans, grid lines, track sizing, content/self-alignment etc (in the grid-axis)); implementors can cheaply implement this by re-using large parts of their CSS Grid implementation; and authors can re-use their existing knowledge about grid layout and their CSS properties.
@meyerweb using display: grid
and specifying masonry
for each axis separately (akin to subgrid
) is just a convenient way to re-use existing properties/values. I don't feel strongly about what specific syntax we use though, except that the grid-axis should use existing Grid properties/values.
@argyleink btw, the Pinterest masonry layout you showed above is pretty trivial to specify using this proposal:
.masonry-container {
display: grid;
grid: masonry / repeat(auto-fill, 150px);
gap: 10px;
}
Or some such. Another thing that is somewhat common on the web is to span an item over one or more columns. Again, you get this for free with this proposal: just add grid-column:span 2
or whatever on the specific item.
While I like many aspects of the proposal, I tend to prefer a display: masonry
layout mode that re-uses many of the grid/alignment properties instead of display: grid
with masonry
as a column/row template.
The reason: there are lots of weird edge cases and interactions in grid layout. Sizing rules have been exhaustively defined, but will still need to be refined every time new features are added (e.g., subgrid). Adding an extra mode where sometimes the grid doesn't actually exist in one direction would likely change the best approach for some of these situations. Versus, with a separate display mode we can consider the rules & constraints that make the most sense, independent of the grid behavior.
Example: with masonry, which items get placed in which columns depends on the heights of previous items (for vertical masonry). And the height of text-container items often depends on the width. But the width of a grid column can depend on the contents of that column & now we have a new circular layout concern (maximizing a column width to fit around an item can make it so that item is no longer in that column) that didn't exist in regular grid layout.
@AmeliaBR just commented with the same concern I was developing while reading this thread today. It seems like we create a lot of additional complexity by making grid do a non-grid thing.
Add to that the teaching issue, it's been tricky enough to explain one-dimensional vs. two-dimensional to authors, and encourage understanding of which layout method to use for which use case. I think that tying Masonry, which is more like flex than grid, to grid layout would be ultimately very confusing.
An argument against making this a new thing is that we don't want to have to create a new layout type for everything the world comes up with. This is a reasonable concern, however given that a lot of the stuff this relates to is not in the grid spec but instead in Box Alignment and Sizing, and these things would need to account for any differences in Masonry over grid anyway, would that be such a problem?
I like @MatsPalmgren's approach to reuse the already established grid layout for that. Though I agree with @argyleink, @meyerweb, @AmeliaBR, and @rachelandrew, that masonry is rather something between flex and grid, which, while sharing logic with both of them, deserves its own display type and properties.
The approach of masonry is different than the one of grid, as its idea is to minimize the gaps between different pieces.
By making its layout be based on grid, we restrict both of them in their future extensibility. That doesn't mean that masonry shouldn't borrow concepts and algorithms of grid layout or flexbox, though. It is just not exactly one or the other.
Sebastian
@argyleink I believe that if the desire result is what you drew in your first diagram, you can already do that today using Multicolumn.
The key with Masonry is the content order. The Masonry JS library can do both of these content orders:
The default order puts the next item in the order as close to the top as possible.
An alternative order (horizontalOrder: true
) usually puts the next item in the next column, without regard to how close to the top the next slot is:
I believe Masonry-style layout belongs in Grid, because the algorithm is thinking about both the rows and columns, and autoplacing content with regards to both. Flexbox can be thought of as a long content snake, that wraps around and around... same with multicolumn. Masonry requires "jumping" from one column to another — there's no content snake. No long unbroken wrapping chain.
Making this part of Grid also gives Authors all the other powers of Grid — track sizing, names, etc.
The CSS Working Group just discussed Masonry Layout
, and agreed to the following:
RESOLVED: Adopt Masonry layout proposal, editors fantasai and Tab, Mats if he's convinceable, Jen Simmons if she's able
Masonry layout can be implemented not only using the grid system (display: grid
), but also using multiple-column layout (columns: 4
) we just need to add support for the order/direction type (mentioned by @jensimmons).
The mechanism is there:
columns
column-count
column-fill
column-rule
column-span
column-width
We just need to add a new property:
column-order
or column-direction
Inline behavior column-direction: inline
(the default value), will position the next item in the same column:
Block behavior column-direction: block
, will position the next item in the next column:
Masonry behavior column-direction: masonry
, will position the next item as close to the top as possible, in any available column.
I was also thinking to use the writing mode property to display vertically masonry and horizontally masonry.
It'd be nice to think how many of the grid layout stuff is needed or not for masonry layout. Basically thinking from an author perspective.
grid-template-columns: max-content 500px;
and then we have 3 auto placed pictures, first picture will go to the first row and first column and will define the size of that column. But maybe picture 3 is bigger so it's going to overflow (still when we're setting max-content
on the column) which would be hard to understand I guess.grid-column: 2;
in a particular picture. Maybe there'll be confusion that something like grid-column: 2; grid-row: 3;
(whatever that could mean on author's) maybe they want to refer to the 3rd position on the 2nd column, but it won't do anything regarding the row information.Probably there could be more questions about grid layout features that might be useful or not for masonry layout.
From the CSSWG discussion:
<tantek>
Is there no attempt to do baseline alignment across masonry items in different columns?
It might be possible to implement baseline alignment for the set of items that we can determine will be at the starting edge without doing any layout. In theory, there might be a case for baseline alignment of items at the end edge (for align-tracks:end
), but this is harder since we don't know which those items are without doing layout. Baseline alignment for other items (that aren't adjacent to the start/end edge) seems pointless since there's no obvious criteria for which items would belong to the same baseline-sharing group like there is in a regular Grid (same track).
Is this limited baseline alignment a feature that authors would find useful?
I haven't really thought much about baselines in general so far though... I'll add a Baselines section to the proposal above and look into it... Thanks for bringing it up!
@AmeliaBR
And the height of text-container items often depends on the width. But the width of a grid column can depend on the contents of that column & now we have a new circular layout concern (maximizing a column width to fit around an item can make it so that item is no longer in that column) that didn't exist in regular grid layout.
I'm afraid I don't see the problem your talking about. Grid has a separate track sizing step that runs before any children are flowed. The circularity in (regular) Grid comes from having tracks in both axis which means an item's size in one axis may influence intrinsic track sizes in the other axis. That problem does not exist when you remove the tracks in one axis, as we do here in the masonry-axis. Feel free to provide a testcase though, in case I'm misunderstanding the problem...
(In case you missed it: I'm only including the subset of items with a known placement in the grid-axis for the intrinsic track sizing step. This step runs before any children are flowed (same as in regular grid) and thus before auto-placed items are placed in the masonry case (which indeed depends on layout results), but those items don't contribute to intrinsic track sizing.)
@mrego
Do we need to set sizes for the columns? Do we need those sizes depend on the content (that might be very tricky as you never know when an item is going to end up?
See above. Yes, there are examples that would overflow because some (larger) item weren't in the subset of items that contributed to intrinsic track sizing. I doubt this will be a problem in practice though, from looking at actual examples of masonry designs on the web. It's also worth noting that authors can influence which items are considered for the intrinsic sizing step by using order
to place items at the start, or use definite placement (grid-column:1
on the third item in your example), or use the placement property in the other axis to force it into the "first row", e.g. grid-row:1
. Granted, it's not perfect, but it's impossible to let auto-placed items (other than those in the "first row") influence track sizes since it leads to unsolvable circularity issues. Personally, I'd rather include intrinsic track sizing that will work fine for the majority of practical designs than exclude it and require only definite track sizes just because it doesn't work perfectly in all cases.
The crux of your testcase is: how do you know which column item 3 will be placed in? This depends on the height of item 1 and 2. If item 1 has a larger height than item 2, then item 3 goes in the 2nd column and shouldn't contribute to the intrinsic size of the first column.
Do we need to be able to position an item into a particular column? Or to span columns?
Spanning tracks is most definitely a required feature if we want to support the designs already in use on the web. Maybe placing items into specific columns isn't needed but we get it for free so I see no reason to intentionally remove it. It's a powerful feature and I'm pretty sure authors will find a use for. It also gives authors better control over intrinsic sizing contributions (as noted above) so that's also an argument for keeping it. I also think it makes the design easier to understand if we can say that the grid-axis works exactly the same as in regular Grid. (Granted though, the effects of the item placement properties in the masonry axis is a bit fuzzy. Hopefully this will be easier to understand once we have polished spec text for it.)
Compliments on the proposal itself, seems incredibly well prepared. Perhaps off-topic, but I want to share my opinion on real world usage of Masonry. Whilst I don't have data, it seems to me that it has never become a mainstream layout choice, or is perhaps past its peak. I challenge the idea that Masonry is popular.
I can think of reasons, one being that they are very messy and difficult for users to decipher. Row to row scanning as most people usually take in information is not effective using Masonry, as there are no rows. It may of course work as a method to show lots of things at once, as a discovery layout, i.e. the Pinterest use case.
Case in point, note how major photography services do dynamic layout: (heads up, galleries may sometimes contain nudity):
https://www.flickr.com/explore https://500px.com/popular https://youpic.com/explore
Same applies to Google Photos, iCloud photos and Google Image search. None use Masonry.
To be fair, counter example that does use it: https://unsplash.com/
I don't know what the particular name of this smart row-based auto sizing algorithm is (does anybody know?) but it looks common, in high demand, and not trivial to do with current layout techniques.
My main point is not to challenge the idea of Masonry in itself, instead to challenge the priority of this particular layout versus layouts that I think are in more demand, subjective as that may be.
@fchristant Thanks for your feeedback. The flickr.com layout came up in the CSSWG discussion (see notes above). Apparently it's a multi-line flexbox and "it's weird and complicated and totally done in JS". #945 is probably a better place to discuss Masonry layout in general though, that isn't specifically about this proposal.
Thanks, the notes seem to have a semantic discussion about whether Flickr-style layouts are also called Masonry. Looks like that is a clear no, it's quite a different layout compared to the core of your proposal.
For the interested, here's an epic article explaining how incredibly hard it can be to achieve such a layout: https://medium.com/google-design/google-photos-45b714dfbed1
I don't know if any native CSS layout module could ever achieve that, the only point I have is that if such a thing would be possible, I presume it to be more in-demand compared to vertical Masonry. I believe Masonry is an exceptional need, not a very common one.
But that's just an opinion, please don't see it as a dismissal of your idea or proposal. Best of luck!
I've updated the proposal with three improvements:
align/justify-tracks
to accept a list of alignment values so you can specify alignment separately for each trackSee the OP above for additional details and examples of those features.
An implementation of this proposal is now available in Firefox Nightly. It is disabled by default, so you need to load about:config
and set the preference layout.css.grid-template-masonry-value.enabled
to true
to enable it (type "masonry" in the search box on that page and it will show you that pref).
Please report any errors or other feedback on that implementation to our Bugzilla. (Feedback and discussion of this spec proposal should continue in this github issue.)
I've also landed tentative tests under /css/css-grid/masonry.tentative. Feedback on those tests can be handled through normal channels for WPT (i.e. github), or in our Bugzilla, whichever you prefer.
Is there a way to only use align-tracks: stretch
for the last line of elements?
Is there a way to only use
align-tracks: stretch
for the last line of elements?
No, the *-tracks
properties takes the same values as *-content
currently so we'd have to add a stretch-last-item
value or something for that. It seems like it would be trivial to implement though so I'm open to adding it if people would find it useful.
I've made a demo to use the experimental implementation currently in Firefox Nightly (behind a pref). https://codepen.io/jensimmons/full/QWjqbJj
The CSS Working Group just discussed Masonry Layout
.
@fchristant: Hi! Flickr engineer here. At Flickr we call it our “justified layout”. We have an algorithm available here: https://github.com/flickr/justified-layout
flexbox attempting masonry (codepen):
.masonry {
width: 100%; /* bummer: still a block level element.. */
height: 800px; /* bummer: should be intrinsic */
display: flex;
flex-flow: column wrap; /* bummer: columns results in wrong order */
align-items: center;
}
As I look at that and think about it, really, by adding 1 more flex-direction, we may be able to fulfill masonry requirements and tuck the feature into the less complicated flexbox spec instead of grid.
The addition would be to flex-direction
:
.masonry {
display: flex;
flex-flow: masonry wrap;
align-items: center;
}
This then sets masonry up nicely for the others flex directionality's (row-reverse
, etc). The spec would articulate the extra value that the new masonry
direction needs to properly order the children while also establishing the container size to be intrinsic. AKA, the spec could fix flexbox's deficiencies in performing the masonry layout, making the tiny new author side CSS addition contain all the complexities required to fulfill it.
TLDR;
Flex needs small nudges to be able to prototype masonry. Masonry appears to be about direction and flow, something flexbox tends to handle with less effort and has a language that's better to support it. By adding a new flex-direction
of masonry
, we could avoid adding extra logic to grid and instead put it on flexbox. We're also then, not asking grid to not make grids. (i still struggle seeing grid not making rows and columns like a grid..)
One of the debates we've had is whether we should make Masonry a part of Grid, or to make it a separate display type. By adding it to Grid, we then have all of the tools of Grid to define the layout in the other dimension. Which makes it far more powerful than the Masonry JS library.
Today, I made a demo showing off a few options: https://codepen.io/jensimmons/full/vYNeRZw
The main issue I see with rolling this into grid, is as previously mentioned in this thread. If we roll this into grid layout then we have things that authors reasonably expect a grid layout to do which start to behave in perhaps an unexpected way once we roll Masonry into the mix. Folk already have issues when they mix placed items with auto-placement for example, as that behavior isn't always intuitive.
In addition I can see it adding a layer of complexity to anything we might want to add to the grid layout module in future, in terms of how this addition works with Masonry layout, we either say it doesn't (and therefore add confusion for authors) or we have to spend additional time making it work.
Because of this I much prefer this being it's own thing, or as @argyleink has suggest part of Flexbox, as it is far less likely that features will be added to the flexbox spec, which would make Masonry a burden that needed to be worked around.
I would also note that even in the most trivial of demos you start to get layouts with some degree of separation of the content order and layout, enough that it would cause weird jumps if tabbing around a list of products for example. It was brought up in the CSSWG meeting in Spain where this was discussed that perhaps we should be addressing that disconnect before adding additional layout methods which make it easy for people to cause this problem, and I would tend to agree.
landed on this issue after reading @rachelandrew post. I'm only a beginner and it's far from me to compare myself with the experts here. I just want to share a codepen experiment where I tried css grid masonry (in turn based on an article that is linked in the pen details) as my 2c. I hope that this can be helpful. https://codepen.io/gacallea/full/YzPQjGN
One of the debates we've had is whether we should make Masonry a part of Grid, or to make it a separate display type. By adding it to Grid, we then have all of the tools of Grid to define the layout in the other dimension. Which makes it far more powerful than the Masonry JS library.
Is there something preventing display: masonry
from adopting the important features from display: grid
(like track sizing/naming) if it is not included in the Grid spec?
I share the concern that adding complexity to Grid could be a problem in the future. Adding a new feature to Grid means making sure that everything works with Masonry as well. Syntax/features may not work in the expected way and the answer could be "it's that way because of Masonry".
I feel like making it a separate display type would give more flexibility to both even if they share a lot of syntax/features.
I think that just adding display: masonry
is the easiest to understand, but I know I've read concerns previously about adding too many display types for every possible design. If it needs to be baked into an existing specification, I think Flexbox or Multicol makes more sense - especially Multicol - but it would require Multicol in the block direction to make some of the examples work and that wouldn't get you the more advanced features from Grid.
Considering the original @desandro's Masonry library a kind of reference implementation, I believe that native CSS solution should cover as many its use cases as possible. In my opinion, items spanning multiple columns are the essential part of the masonry layout concept, so limiting it with single-column items, as it would be inevitable with Flexbox approach, is not a way to go. While I understand the concerns about extra complexity that mixing Masonry stuff into Grid would bring, I wholeheartedly agree with @jensimmons's point about practical benefits of reusing the built-in Grid tools to control the layout of Masonry items.
After all, the subtitle of the Masonry library homepage itself states that it is the "Cascading grid layout library"... :)
Obviously this is something a great deal of people have been requested, and I very much appreciate the work that's gone into this. That said, it seems very odd to me that this is being proposed as part of the grid
spec. I think of grids as a way to align along two axes, whereas this proposal is only concerned with the alignment of one axis.
Granted, I am not a browser developer, but it seems to me this could easily move to columns or Flexbox. I'm not necessarily a fan of display: masonry
, either. This feels like incredibly specialized layout behavior to get its own display
value.
My biggest concern is, how will supporting a masonry style layout in grid affect grid development going forward? I would rather grid remain a spec that is concerned with alignment in two-dimensions. That's my two cents.
In my opinion, items spanning multiple columns are the essential part of the masonry layout concept, so limiting it with single-column items, as it would be inevitable with Flexbox approach, is not a way to go.
This is an excellent point, @SelenIT, and has shifted my view on this: I’m now much less inclined to put masonry into flexbox, and more inclined (though not whole-heartedly convinced) to have it be part of Grid.
I would think @SelenIT's comment would be a better argument for adding a new type of flow to multi-column, not necessarily grid.
Multicol is fundamentally about fragmentation: about a continuous flow broken into pieces, as across pages. Just as we didn't build flexbox layout into inline layout (which is a continuous flow broken across lines), we shouldn't build masonry layout into multicol.
Masonry should be its own thing on par with Flex and Grid. It's not quite either but at the same time it's such a common layout that it would be nice to have an official spec. Maybe it borrows a lot of the syntax from Grid, but it's different enough that I wouldn't want to pollute or complicate Grid with it.
@rachelandrew raises this point:
I would also note that even in the most trivial of demos you start to get layouts with some degree of separation of the content order and layout, enough that it would cause weird jumps if tabbing around a list of products for example.
In my accessibility work (testing with users, audits, etc) I see the reading order and tab order get horribly out of sync from user expectations. Zoom, keyboard-only, screen reader, voice, and mobility-impaired users are all affected by source order that does not match visual order (1.3.2, 2.4.3). This happens with grid, flex, floats, and absolute positioning but is becoming far more prevalent with grid and flex becoming popular.
It was brought up in the CSSWG meeting in Spain where this was discussed that perhaps we should be addressing that disconnect before adding additional layout methods which make it easy for people to cause this problem, and I would tend to agree.
This is where I land.
While I agree defining a standard for this is good, that standard should take into account the demonstrated accessibility challenges with these layout methods and incorporate rules for source versus display order.
This proposal is rather well put together and exciting. I also want it to account for the users who care little for the designer's intent and simply want to use the page.
Also, I agree with putting this under flex or as a standalone that borrows properties, but not grid.
I still don't see any possibility to do a layout like the following example (from the Masonry library docs) with Flexbox:
However, @jensimmons has already demonstrated how it's easily doable with the current proposal.
Also, typical masonry layouts (as well as multicol layouts) usually tend to be built "from outside" (the width of the column dictates the width of its contents), while Flex layout is more "from inside" (the base size is determined by content and then gets adapted to the available space). From my perspective, masonry layout has more in common with Grid in this aspect than with Flexbox.
@MatsPalmgren The arrangement animation in Masonry.js is very interesting. Are you considering implementing it?
Wouldn't the Masonry concept better fit into the overall Grid logic if masonry
becomes a new grid-auto-flow
modifier rather than the separate value of grid-template-*
? I.e.,
dense
auto-placement looks back for the available cells in the earlier tracks, leaving less unused space;masonry
auto-placement (e.g. grid-auto-flow: row masonry
) ignores the perpendicular grid tracks at all and fills the grid tracks in the auto-flow direction using the Masonry algorithm, packing them even denser (you can think of it as kind of "super dense").The obvious downside of that approach is the impossibility to enable the Masonry behavior on both directions at once (grid-template: masonry / masonry
), but I believe that such case has low practical value anyway. In the same time it seems to have several advantages:
grid-auto-flow
getting ignored with grid-template-*: masonry
approach);I suppose it would be not too difficult to enable the latter option with the following change to the algorithm: before starting Masonry layout, place all grid items assigned to explicit grid areas as usually, and then during the Masonry placement check not only the top position, but also the available space between the previous masonry item and the next grid item in each track (please correct me if I'm mistaken and have underestimated the difficulty).
Wouldn't it be easier to integrate Masonry into Grid this way?
i cant believe that you havent solved this
The CSS Working Group just discussed Masonry Layout
, and agreed to the following:
RESOLVED: Adopt Mats's draft as ED
@yisibl wrote:
The arrangement animation in Masonry.js is very interesting. Are you considering implementing it?
No, I have no plans on implementing it. But if I were to add a feature like that to CSS then I would make it general animation feature that you could use on arbitrary boxes. I don't see why it should be a Masonry or Grid specific feature. That said, implementing a feature like that seems non-trivial. Feel free to file a separate csswg issue suggesting it though!
Overview
This is a proposal to extend CSS Grid to support masonry layout in one of the axes while doing normal grid layout in the other. I'll use
grid-template-rows/columns: masonry
to specify the masonry-axis in the examples (and I'll call the other axis the grid-axis). Here's a simple example:Result:
The grid-axis behaves pretty much the same as in a normal grid container. Line names and track sizes can be specified and items can be placed and span multiple tracks using
grid-column/row
. CSS Box Alignment works normally etc. In the masonry-axis, items are placed into the grid-axis track(s) with the most space (typically) after the margin-box of the last item in those tracks.Line name resolution and grid item placement
Grid items are formed and blockified the same as in a normal grid container. Line name resolution works the same as if
masonry
were replaced withnone
, i.e. names resolve in both axes. Grid item placement is done normally as well, although most of this result is discarded. Any items that were placed in the first hypothetical "track" in the masonry-axis keep their placement. Other items that have a definite position in the grid-axis keep that. Other placement results are ignored. These items will instead be placed according to the Masonry layout algorithm. (This implies that items can only be placed into the same grid area in this first hypothetical "track"). The flow axis specified bygrid-auto-flow
is ignored - items are always placed by filling the grid-axis.direction:rtl
works as usual (reverses the grid) if the grid-axis is the inline-axis.Containing block
The containing block for a grid item is formed by the grid area in the grid-axis and the grid container's content-box in the masonry-axis. Self-alignment works normally in the grid-axis, but is ignored in the masonry-axis. Margins do not collapse in either axis.
Track sizing
The Track Sizing Algorithm works as usual in the grid-axis, except only the subset of items with a definite placement in the grid-axis, or which span all tracks, contribute to the intrinsic sizing. This makes the first (implicit grid) "track" in the masonry-axis special since those items always contribute to the intrinsic sizing.
auto
-placed items which don't end up in the first track don't contribute (since which track they end up in depends on layout results). The min/max-content size of a grid container in the masonry-axis is the largest distance between the item margin-edges in each of the tracks in the grid-axis, when sized under a min/max-content constraint.Grid container alignment and gutters
Alignment etc works normally in the grid-axis. Gutters are supported in both axes. In the masonry-axis the relevant gap is applied between each item. Content alignment (
align/justify-content
) in the masonry-axis is applied "to the content as a whole". More specifically, the alignment subject is the "masonry box", which has the extent from the content box edge of the grid container to the margin-box end edge of the item that is the furthest away, as indicated by the dashed border here: (Item "1" has a 5px bottom margin here.) Note that there is only ever one alignment subject for these properties in the masonry axis, so the unique alignments boil down tostart
,center
,end
andstretch
. (normal
behaves asstretch
as usual for grid containers). The above image shows the alignment subject withalign-content:start
. By default the masonry box is the same as the content box due to being stretched. This doesn't affect the items' alignment within the masonry box in any way though (which is what I meant by "to the content as a whole"). So I've added two properties to allow authors to align the items within the masonry box:align/justify-tracks
which have the same values as the corresponding-content
property (EDIT: I've extended it to accept a list of values, see below). Here's a screenshot showing a few alignment possibilities: (Here's the testcase for that.) There's one difference for these new properties though:normal
behaves asstart
. So if all these properties have their initial values, the rendering is the expected "packed" masonry layout as shown in the top left corner above.align/justify-tracks:stretch
align/justify-tracks:stretch
can be used to fill the tracks in the masonry axis by stretching items individually. Items can opt out from stretching process by settingalign/justify-self
to something other thannormal/stretch
in the relevant axis. Items that have either a definite size or anauto
margin in the masonry axis are excluded from this stretching. An item only grows up to itsmax-size
.auto
margins can be used to align the item inside its new larger space instead of changing its size. I made a testcase and a video to illustrate. Only the purple items haveheight:auto
, so they are the ones that may grow by default. A few items worth noting: item 4 hasmax-height:40px
so it only grows up to that size and then the other items in its track picks up the remaining size. Item 16 opts out from resizing by settingalign-self:end
. Item 18 hasmargin-top/bottom:auto
so it's centered in its allotted space instead of growing. Item 20 hasmargin-top:auto
so it's aligned to the end. (Here's the corresponding testcase with a masonry inline-axis instead, with video.) It should be noted that this is an alignment step only - all items keep their pre-alignment track placement.align/justify-tracks alignment values can be specified per track
The (highly tentative) syntax is a comma-separated list of alignment values - the start track takes the first value, etc. If there are fewer values than tracks then the last value is used for all the remaining tracks. If there are more values than tracks then the remaining values have no effect on rendering. Here's an example, which renders like this: Note that the
align-track
value intentionally has one value less than the number of tracks to illustrate that the remaining track(s) use the last value (i.e. the right-most track also usespace-evenly
). (baseline
values are also supported but excluded in this test, but see below...)Baselines
Item baseline alignment inside the tracks in the grid-axis works as usual, as defined in Grid and Box Alignment specs, and the grid container's baseline is determined the same as for a regular grid in that axis.
Baseline alignment is supported also in the masonry axis, on the first and last item in each track (but not on items "in the middle" of the track). Only tracks with the
align/justify-tracks
valuesstart
,end
orstretch
, support baseline alignment. There are four different sets of baseline groups:start
track + the first item in eachstretch
trackstart
trackend
trackend
track + the last item in eachstretch
trackEach of those sets can have a first baseline group or a last baseline group, resulting in eight unique baseline groups. Here's an example illustrating all eight possibilities, which renders as: I used two separate grid containers to illustrate first ("F") and last ("L") baseline groups to unclutter it. You can use all eight groups in the same container if you wish. The aligned baselines are indicated in red color. Note that the tracks that are attached to the end side of the masonry box adjust the padding (or margin in the case of
align-self
) on the end side, whereas tracks attached to the start side adjust the start padding/margin. (I only usedalign-content:[last] baseline
on the items in the example above, which adjusts the padding, since it's easier to see the adjustment. You can also usealign-self:[last] baseline
, or a mix of the two, as usual.)ISSUE: this needs more details about edge cases, caveat about misalignment in stretch, etc
Masonry layout algorithm
Items are placed in order-modifed document order but items with a definite placement are placed before items with an indefinite position (as for a normal grid). For each of the tracks in the grid-axis, keep a running position initialized to zero. For each item that has an indefinite placement:
min_pos
min_pos
as the definite placementCalculate the size of the containing block and flow the item. Then calculate its resulting margin-box size in the masonry-axis. Set the running position of the tracks the item spans to
min_pos
+ margin-box + grid-gap.There are a few variations of this algorithm that might be useful to authors. First, the "definite items first" might be useful to skip in some cases, so that a plain order-modifed document order is used instead. Also, opting out from the packing behavior described above and instead placing each item in order (a couple of existing masonry JS packages provides this option). So, perhaps something like this:
masonry-auto-flow: [ definite-first | ordered ] || [ pack | next ]
. Example:Result:
(Without
masonry-auto-flow: next
, 1,3,5,6 are placed in the middle row.)Fragmentation
Fragmentation in the masonry-axis is supported. Each grid-axis track is fragmented independently. If an item is fragmented, or has a forced break before/after it, then the running position for the tracks that it spans in the grid-axis are set to the size of the fragmentainer so that no further items will be placed in those tracks. Placement continues until all items are placed or pushed.
Subgrid
Masonry layout is supported also in subgrids (e.g.
grid: subgrid / masonry
). However, only a parent grid-axis can be subgridded. Asubgrid
axis with a parent masonry-axis will behave asmasonry
, unless the subgrid's other axis is alsomasonry
in which case it behaves asnone
. (A grid container can only have one masonry-axis).auto
-placed subgrids don't inherit any line names from their parent grid, but are aligned to the parent's tracks as usual. Here's a subgrid example:Result:
Note how the subgrid's first item ("subgrid.1") contributes to the intrinsic size of the 2nd row in the parent grid. This is possible since the subgrid specified a definite placement so we know which tracks it will occupy. Note also that it's subgridding the masonry-axis of the parent which falls back to masonry layout in the inline-axis for the subgrid.
Absolute Positioning
Grid-aligned absolute positioned children are supported. The containing block is the grid-area in the grid-axis and the grid container padding edges in the masonry-axis, except for line 1 in the masonry-axis which corresponds to the start of the "grid" (the content-box start edge usually). It might be useful to define a static position in the masonry-axis though, given that we only have a one line in that axis to align to. Maybe it could defined as the max (or min?) current running position of the grid-axis tracks at that point?
repeat(auto-fit)
I don't see a way to support
repeat(auto-fit)
sinceauto
-placed items depend on the layout size of its siblings. Removing empty tracks after layout wouldn't be possible in most cases since it might affect any intrinsic track sizes. Even if all track sizes are definite the containing block size could change for grid-aligned abs.pos. descendants. Sorepeat(auto-fit)
behaves asrepeat(auto-fill)
when the other axis is a masonry-axis.Performance notes
In general, masonry layout should have significantly better performance than the equivalent (2-axis) grid layout, particularly when the masonry-axis is the block-axis since the intrinsic sizing of grid rows is typically quite expensive. Any intrinsic track sizing in the grid-axis should be cheaper too, because, typically, only a subset of items contribute to the intrinsic sizing in a masonry layout, contrary to a 2-axis grid where all items spanning the intrinsic track contributes. That said,
justify/align-tracks:stretch
specifically adds a cost proportionate to the number of items that are resized. (Note thatstretch
isn't the default value for these properties though.) Stretched items do a second layout (size reflow) with the new size (when it actually changed) so this can be costly if there are a huge amount of stretched items that each contains a lot of content. Especially nested stretched masonry layouts should be avoided unless they are small/trivial. This can be ameliorated by the author by opting out from the stretching on most items though, e.g. specifyingjustify/align-items:start
and then opting in for just a few items withjustify/align-self:stretch
to let those items fill the masonry axis. Otherjustify/align-tracks
values such ascenter
,end
and<content-distribution>
(other thanstretch
) shouldn't be a problem though since they just reposition the items which is fast. (This performance analysis is from a Gecko perspective, but I suspect there's some truth to it for other engines as well.)Graceful degradation
A Masonry design should degrade quite nicely in an UA that supports Grid layout but not Masonry layout if the
grid/grid-template
shorthands are avoided and the longhands are used instead. e.g.Here's a testcase to demonstrate. It gives you a three-column grid layout, but with "more gaps" than if the UA supported
masonry
. (A video of the masonry layout for comparison.)