Re: [csswg-drafts] [css-flexbox-1] Flex container baselines with reverse direction. (#7776)

The only reason not to keep the current spec is that the following case is the predominant usecase for flex-direction: column-reverse:
https://www.software.hixie.ch/utilities/js/live-dom-viewer/?saved=10819
```html
<!DOCTYPE html>
<div style="display: flex; flex-direction: column-reverse; overflow-y: scroll; width: 100px; height: 100px; border: solid 3px; padding: 10px; gap: 10px">
  <div style="font-size: 80px; background: lime;">1</div>
  <div style="font-size: 80px; background: lime;">2</div>
</div>
```

If we keep the spec as is the first baseline will be the border-box block-start edge, last baseline will be the "1".
(This is likely fine, just want to mention the (only) downside).

-- 
GitHub Notification of comment by bfgeek
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/7776#issuecomment-1261133657 using your GitHub account


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Wednesday, 28 September 2022 16:07:30 UTC