Skip to content

grid-template shorthand parsing error #1130

@yisibl

Description

@yisibl

input

See playground

.grid {
  grid-template-areas: "a a a" "b c c";
  grid-template-rows: 30px 60px 100px;
  grid-template-columns: 1fr 1fr 1fr;
}

output

❌ The grid-template-rows is missing the row with a value of 100px.

.grid {
  grid-template: "a a a" 30px
                 "b c c" 60px
                 / 1fr 1fr 1fr;
}

expected

.grid {
  grid-template: "a a a" 30px
                 "b c c" 60px
                 ". . ." 100px
                 / 1fr 1fr 1fr;
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions