https://drafts.csswg.org/css-align/#place-items-property The grammar allows `auto` in the first (or single) value. It shouldn't allow it because `align-items` doesn't have an `auto` value: https://drafts.csswg.org/css-align/#propdef-align-items So, I think the correct grammar should be: ``` <x> = [ normal | stretch | <baseline-position> | <self-position> ] place-items: <x> [ auto | <x> ]? ``` IOW, `auto` should only be allowed as a second value.