Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: CSS contain-intrinsic-* syntax updates (#684)
This PR updates the syntax for all `contain-intrinsic-*` properties: - Most adhere to `auto? [ none | <length> ]` -> an optional `auto` keyword followed by `none` or a `<length>`, e.g.: - `10px` - `auto none` - `auto 300px` - `[ auto? [ none | <length> ] ]{1,2}` - an optional `auto` keyword with `none` or a `<length>`, - `50px 250px` - `none none` - can be `auto 10px auto 10px` (for `auto width, auto height`) Additionally setting all of these as standard now. __Related issues and pull requests:__ - [ ] Parent issue mdn/content#28292 - [ ] Examples: mdn/content#28618 - [x] Relnote mdn/content#28522 - [x] BCD - mdn/browser-compat-data#20532 __Bugzilla:__ - https://bugzilla.mozilla.org/show_bug.cgi?id=1835813
- Loading branch information