grid: "a b c"; is reported as invalid

A "single line" grid code is reported as invalid by https://jigsaw.w3.org/css-validator/  :
#test {
  grid: "a b c"; //reported as invalid, when in fact it should be valid
  grid: "a b c" "a b c"; //reported as valid
}

Received on Sunday, 7 July 2024 07:15:42 UTC