- From: Xiaocheng Hu via GitHub <sysbot+gh@w3.org>
- Date: Tue, 15 Aug 2023 00:15:36 +0000
- To: public-css-archive@w3.org
The current reason is that allowing custom properties basically means allowing any property, which may break anchor positioning entirely.
For example:
```
.target {
  position: var(--x);
  --x: absolute;
  position-fallback: --fallbacks;
}
@position-fallback --fallbacks {
  @try { --x: static; }
}
```
-- 
GitHub Notification of comment by xiaochengh
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/9150#issuecomment-1678257075 using your GitHub account
-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Tuesday, 15 August 2023 00:15:38 UTC