Test case:
.a-two {
grid-gap: 2rem 1rem;
grid-template-rows: 1fr minmax(100px, 1fr) 2fr;
grid-template-columns: repeat(3, 1fr);
grid-template-areas:
"head-two head-two head-two"
"nav-two main-two main-two"
"nav-two foot-two foot-two";
}
Expected:
.a-two {
grid-gap: 2rem 1rem;
-ms-grid-rows: 1fr 2rem minmax(100px, 1fr) 2rem 2fr;
grid-template-rows: 1fr minmax(100px, 1fr) 2fr;
-ms-grid-columns: 1fr 1rem 1fr 1rem 1fr;
grid-template-columns: repeat(3, 1fr);
grid-template-areas:
"head-two head-two head-two"
"nav-two main-two main-two"
"nav-two foot-two foot-two";
}
Actual:
.a-two {
grid-gap: 2rem 1rem;
-ms-grid-rows: 1fr 2rem 1rem minmax(100px, 1fr) 2rem 1rem 2fr;
grid-template-rows: 1fr minmax(100px, 1fr) 2fr;
-ms-grid-columns: 1fr 2rem 1rem 1fr 2rem 1rem 1fr;
grid-template-columns: repeat(3, 1fr);
grid-template-areas:
"head-two head-two head-two"
"nav-two main-two main-two"
"nav-two foot-two foot-two";
}
/cc @yepninja
I forgot about two values 🤦♂️
I'll fix it in few days.
@yepninja this is a high priority issue that should get fixed before the article is published.
Closed by https://github.com/postcss/autoprefixer/pull/1054 will be released on this weekend or in the beginning of next week.
Released in 8.6 “Follow Reason”
Most helpful comment
I forgot about two values 🤦♂️
I'll fix it in few days.