Open
Description
https://drafts.csswg.org/css-logical/#box says
Shorthand properties that encompass both logical and physical longhands (such as the all shorthand) set omitted values first, and otherwise set the physical values last. For example,
all: inherit
will set all of themargin
properties toinherit
, but since the physical longhands are set last, the child’s margins will inherit from their physical counterparts in the parent.
This seems unintelligible to me:
- What are the "omitted values"? E.g. in
all: inherit
- "otherwise" which condition?