Re: [csswg-drafts] [css-anchor-1][css-position] Add the “centering” behavior which is now defined as an example in the specs as something built-in (#8979)

So to clarify, is this correct?

Current spec:

```css
.centered-anchor {
  position: absolute;
  anchor-default: --myAnchor;
  left: anchor(center);
  translate: -50% 0;
}
```

New proposal with `align-self: anchor-center;`:

```css
.centered-anchor {
  position: absolute;
  anchor-default: --myAnchor;
  left: 0;
  right: 0;
  align-self: anchor-center;
}
```

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


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

Received on Wednesday, 2 August 2023 16:48:06 UTC