diff --git a/css-sizing-4/Overview.bs b/css-sizing-4/Overview.bs index 0be46f5c863..c28d15bea0a 100644 --- a/css-sizing-4/Overview.bs +++ b/css-sizing-4/Overview.bs @@ -604,6 +604,104 @@ Max-content Sizes in Constrained-height Multi-column Layout this approximation collapses to simply doing a layout, and measuring the resulting columns. + + +
+ Name: intrinsic-block-size, intrinsic-inline-size, intrinsic-height, intrinsic-width + Value: legacy | auto | <+ + The 'intrinsic-*' properties determine + whether the [=intrinsic size contributions=] of a box + are calculated from sizes derived from its content + or from a specified explicit intrinsic inner size. + See [[#intrinsic-contribution]]. + Values are defined as follows: + +> + Initial: legacy + Inherited: no + Applies to: all elements except [=non-replaced=] [=inlines=] + Computed value: as specified, with < > values computed + Percentages: relative to width/height of [=containing block=] + Animation type: by computed value type +
+ Name: intrinsic-size + Value: <<'intrinsic-width'>> <<'intrinsic-height'>>? ++ + The 'intrinsic-size' property is a [=shorthand=] + for setting all the 'intrinsic-*' properties in one declaration. + + The first value sets 'intrinsic-width', + and the second value sets 'intrinsic-height'. + If the second value is omitted, + it defaults to the first. + + Issue: When we figure out how to make other physical x/y shorthands, + like 'background-size', + work with logical sizes, + we'll apply the same logic here. + + + + +