Answered
grid-template-columns gives error in Dreamweaver
In my css file I have
@media (min-width: 768px) {
.cards { grid-template-columns: repeat(4, 1fr); }
}and I get an error saying
Expected RBRACE
I got the code from https://travishorn.com/responsive-grid-in-2-minutes-with-css-grid-layout-4842a41420fe and all is working as expected.
Why is there an error?
