Re: [csswg-drafts] [css-align-3] `grid-*-gap` should be aliases instead of shorthands (#8014)

In practice, the difference can be observed as such:

```js
document.body.style.gridGap = "var(--gap)";
document.body.style.gap; 
```

Firefox and WebKit say `"var(--gap)"` because they implement `grid-gap` as an alias of `gap`.
Blink says `""` because it implements `grid-gap` and `gap` as independent shorthands.

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


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

Received on Friday, 4 November 2022 04:47:52 UTC