syntax validation error with grid-template rows?
-
I have some css like below. I am getting a “Expected RBRACE AT” and the ‘1’ in the 1fr. I believe this is correct syntax, am I wrong?
@media screen and (max-width: 768px) {
selector {
grid-template-columns: repeat(4, minmax(0, 1fr));
grid-template-rows: repeat(1, minmax(0, 1fr));
}
}
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘syntax validation error with grid-template rows?’ is closed to new replies.