Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

contain-intrinsic- size, width, height #607

Merged
merged 9 commits into from
Oct 12, 2022
89 changes: 89 additions & 0 deletions css/properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -4220,6 +4220,95 @@
"status": "standard",
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/contain"
},
"contain-intrinsic-size": {
"syntax": "[ none | <length> | auto <length> ]{1,2}",
hamishwillee marked this conversation as resolved.
Show resolved Hide resolved
"media": "visual",
hamishwillee marked this conversation as resolved.
Show resolved Hide resolved
"inherited": false,
"animationType": [
"contain-intrinsic-width",
"contain-intrinsic-height"
hamishwillee marked this conversation as resolved.
Show resolved Hide resolved
],
"percentages": [
"contain-intrinsic-width",
"contain-intrinsic-height"
],
"groups": [
"CSS Containment"
],
"initial": [
"contain-intrinsic-width",
"contain-intrinsic-height"
],
"appliesto": "elementsForWhichSizeContainmentCanApply",
"computed": [
"contain-intrinsic-width",
"contain-intrinsic-height"
],
"order": "perGrammar",
"status": "experimental",
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-size"
},
"contain-intrinsic-block-size": {
"syntax": "none | <length> | auto <length>",
"inherited": false,
"animationType": "byComputedValueType",
"percentages": "no",
"groups": [
"CSS Containment"
],
"initial": "none",
"appliesto": "elementsForWhichSizeContainmentCanApply",
"computed": "asSpecifiedWithLengthValuesComputed",
"order": "perGrammar",
"status": "experimental",
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-block-size"
},
"contain-intrinsic-height": {
"syntax": "none | <length> | auto <length>",
"inherited": false,
"animationType": "byComputedValueType",
"percentages": "no",
"groups": [
"CSS Containment"
],
"initial": "none",
"appliesto": "elementsForWhichSizeContainmentCanApply",
"computed": "asSpecifiedWithLengthValuesComputed",
"order": "perGrammar",
"status": "experimental",
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-height"
},
"contain-intrinsic-inline-size": {
"syntax": "none | <length> | auto <length>",
"inherited": false,
"animationType": "byComputedValueType",
"percentages": "no",
"groups": [
"CSS Containment"
],
"initial": "none",
"appliesto": "elementsForWhichSizeContainmentCanApply",
"computed": "asSpecifiedWithLengthValuesComputed",
"order": "perGrammar",
"status": "experimental",
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-inline-size"
},
"contain-intrinsic-width": {
hamishwillee marked this conversation as resolved.
Show resolved Hide resolved
"syntax": "none | <length> | auto <length>",
"media": "visual",
hamishwillee marked this conversation as resolved.
Show resolved Hide resolved
"inherited": false,
"animationType": "byComputedValueType",
"percentages": "no",
"groups": [
"CSS Containment"
],
"initial": "none",
"appliesto": "elementsForWhichSizeContainmentCanApply",
hamishwillee marked this conversation as resolved.
Show resolved Hide resolved
"computed": "asSpecifiedWithLengthValuesComputed",
"order": "perGrammar",
"status": "experimental",
"mdn_url": "https://developer.mozilla.org/docs/Web/CSS/contain-intrinsic-width"
hamishwillee marked this conversation as resolved.
Show resolved Hide resolved
},
"content": {
"syntax": "normal | none | [ <content-replacement> | <content-list> ] [/ [ <string> | <counter> ]+ ]?",
"media": "all",
Expand Down