Re: [fxtf-drafts] [css-compositing-2] Add plus-lighter to mix-blend-mode and background-blend-mode (#444)

> Can you post an example where 2 text blocks are faded that doesn't need a lot more additional CSS to line things up?

With CSS Grid you can line up "stacked" elements very easily. In this example, all direct child elements of `.wrapper` will occupy the same area:

```css
.wrapper { display: grid; }
.wrapper > * { grid-area: 1 / 1 / 2 / 2; }
```

-- 
GitHub Notification of comment by mstange
Please view or discuss this issue at https://github.com/w3c/fxtf-drafts/pull/444#issuecomment-1011417790 using your GitHub account


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

Received on Wednesday, 12 January 2022 20:19:47 UTC