-
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-1] Add more directional values to grid-auto-flow #3622
Comments
column
and row
for flex-direction
and flex-auto-flow
column
and row
for flex-direction
and flex-auto-flow
|
Hi @perymimon, I think it's not really possible to do longest/shortest because often the size of the grid container is dependent on how content is laid out inside it. But row-reverse/column-reverse should be doable and certainly makes sense to add. |
What is the use case for this? |
I'd like to see a bit more here before this goes on the meeting agenda. I definitely agree with Mats that we need use cases to guide the discussion. |
@astearns This isn't the first time I've seen this request, and the workarounds being used were changing the grid's |
A simplest use-case is when your responsive layout differs from the placement of elements in DOM. <div class="columns">
<div class="item">FOO</div>
<div class="item">BAR</div>
</div>
<style>
.columns
{
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
@media (max-width: 600px)
{
.columns
{
grid-template-columns: auto;
grid-auto-flow: row-reverse;
/* BAR renders before FOO */
}
}
</style> And I actually need that a lot. Writing |
Trivial use case for reverse is content that writing from right to left. like Hebrew and Arabic Another one is when I build a game and want players cards flow from right to left Use cases : btw, what are the use cases for support all
in flex ? |
column
and row
for flex-direction
and flex-auto-flow
This is automatically handled. Reverse direction in Hebrew would go from left to right, because by default Grid and Flex will use right-to-left. |
The proposal here is to add |
The CSS Working Group just discussed
The full IRC log of that discussion<TabAtkins> q+<dael> fantasai: We have a longstanding issue where someone req reerse keywords. iank_ had raised not having reversing as a reason to split masonry and grid. Regardless, seems it would be worth adding reverse keywords to auto-flow <astearns> ack TabAtkins <dael> bts: From reading issue a lot of this came from wanting to support flex prop in grid. Makes sense to have in masonry too. <dael> TabAtkins: row and column revrse makse sense. Not sure how wrap-reverse would work. Implies we'd create implicit rows in negative <dael> fantasai: Yep, start at bottom of explicit grid <dael> TabAtkins: That seems fine. Okay. Yeah. <dael> astearns: Alright. Last time this came through I asked for use cases. More detail in the issue so I'm good now <dael> astearns: Prop: Add row-reverse, column-reverse, and wrap-reverse <dael> astearns: Obj? <dael> RESOLVED: Add row-reverse, column-reverse, and wrap-reverse |
I've edited the row-reverse, column-reverse, and wrap-reverse values into the css-grid-3 editor's draft. |
please consider to normalize
grid-auto-flow
with all value offlex-direction
meen addrow-reverse
andcolumn-reverse
and consider also to add the following values or similar with the same meaning to the spec:
longest-dimension
: for auto flow to column or row the longest one;shortest-dimension
: for auto flow to column or row the shortest one;longest-dimension-reverse
: for auto flow to column or row the longest one but in reverse order;shortest-dimension-reverse
: for auto flow to column or row the shortest one but in reverse order;grid-auto-flow-property
flex-direction
The text was updated successfully, but these errors were encountered: