Skip to content
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

Closed
perymimon opened this issue Feb 7, 2019 · 11 comments
Closed

[css-grid-1] Add more directional values to grid-auto-flow #3622

perymimon opened this issue Feb 7, 2019 · 11 comments

Comments

@perymimon
Copy link

perymimon commented Feb 7, 2019

please consider to normalize grid-auto-flow with all value of flex-direction meen add row-reverse and column-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

@perymimon perymimon changed the title another options beside of column and row for flex-direction and flex-auto-flow more options beside of column and row for flex-direction and flex-auto-flow Feb 7, 2019
@perymimon
Copy link
Author

longest, shortest longest-reverse and shortest-reverse should be more slik

@fantasai fantasai added the css-grid-2 Subgrid; Current Work label Feb 7, 2019
@fantasai
Copy link
Collaborator

fantasai commented Feb 7, 2019

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.

@MatsPalmgren
Copy link

What is the use case for this?

@astearns astearns removed the Agenda+ label Feb 12, 2019
@astearns
Copy link
Member

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.

@fantasai
Copy link
Collaborator

@astearns This isn't the first time I've seen this request, and the workarounds being used were changing the grid's direction to get the reverse behavior. I'd rather avoid people doing that.

@CyberAP
Copy link

CyberAP commented Jul 12, 2019

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 .columns > :nth-child(1) is cumbersome and doesn't really go well with a component-based approach.

@perymimon
Copy link
Author

perymimon commented Dec 20, 2019

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 :
longest-dimension : fill the page with cards.
when a user open the page with width screen like desktop I want to render them horizontally . and when it open it on narrow but tall, like phone, I want to render them vertically . same Idea as if a user split his screen to two panel and now I have more room vertically.

btw, what are the use cases for support all

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;

in flex ?

@fantasai fantasai added css-grid-3 Masonry Layout and removed css-grid-2 Subgrid; Current Work labels May 27, 2020
@fantasai fantasai changed the title more options beside of column and row for flex-direction and flex-auto-flow [css-grid-1] Add more directional values to grid-auto-flow Sep 7, 2023
@fantasai
Copy link
Collaborator

fantasai commented Sep 7, 2023

Trivial use case for reverse is content that writing from right to left. like Hebrew and Arabic

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.

@fantasai
Copy link
Collaborator

The proposal here is to add row-reverse, column-reverse, and maybe also wrap-reverse, to grid-auto-flow--consistent with flex-flow.

@css-meeting-bot
Copy link
Member

The CSS Working Group just discussed [css-grid-1] Add more directional values to grid-auto-flow, and agreed to the following:

  • RESOLVED: Add row-reverse, column-reverse, and wrap-reverse
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

@fantasai
Copy link
Collaborator

fantasai commented Sep 6, 2024

I've edited the row-reverse, column-reverse, and wrap-reverse values into the css-grid-3 editor's draft.

@fantasai fantasai closed this as completed Sep 6, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

6 participants