Re: [csswg-drafts] [css-flexbox-1] Should 'align-content: stretch' use 'safe' in the fallback value? (#11641)

```html
<!DOCTYPE html>
<div style="display: inline-flex; border: solid; height: 50px; flex-wrap: wrap-reverse; align-content: stretch">
  <div style="width: 100px; height: 100px; background: cyan"></div>
</div>
<div style="display: inline-flex; border: solid; height: 50px; flex-wrap: wrap-reverse; align-content: flex-start">
  <div style="width: 100px; height: 100px; background: cyan"></div>
</div>
<div style="display: inline-flex; border: solid; height: 50px; flex-wrap: wrap-reverse; align-content: safe flex-start">
  <div style="width: 100px; height: 100px; background: cyan"></div>
</div>
```

Gecko, Blink and WebKit use `flex-start`. Servo uses `safe flex-start`.

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


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

Received on Monday, 3 February 2025 22:56:34 UTC