Re: [csswg-drafts] [css-align-3][css-flexbox-1] How to determine the last baseline of a flex container with different alignment groups. (#7641)

The general problem that I think you are hinting at already exists without replaced elements, e.g.

```html
<div style="display: flex; align-items: last baseline;">
  <div>baseline</div>
  <div style="display: flex; align-items: baseline;">
    <div>line1<br>line2<br>line3</div>
    <div>baseline</div>
  </div>
</div>
```

(FF rendering is badly wrong here) but here "baseline" "line1" "baseline" would all be aligned.

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


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

Received on Monday, 29 August 2022 21:10:02 UTC