I am checking out the new CSS subgrid which currently only works on Firefox.
The problem I have is that ST3 does not recognize the CSS syntax and therefore does not validate.
How can I get round this problem?
.bottom {
display: grid;
grid-column: 1/9;
.content {
grid-column: 1/5;
}
img {
grid-column: 5/9;
}
}