I was trying to use css grids fr units and they didn't seem to work, gave me a red squiggly
The css I used was
`html, body {
height: 100%;
margin: 0px;
padding: 0;
display: grid;
grid-template-columns: 1fr 1fr ;
grid-gap: 10px;
background-color: #f2f2f2;
`

Operating System: Windows 10 Pro
Steps to reproduce this bug:
That css code above.
Thanks for reporting! My hunch is that csslint, the package that is doing the static analysis to check for errors in the CSS, needs to be updated. Going to try it out now!
So apparently this is an open issue with CSSLint :(, see CSSLint/csslint#734.
The JSFiddle maintainers found a solution but it's not clear what exactly the solution was, see https://github.com/jsfiddle/jsfiddle-issues/issues/1377.
It seems like the way to fix this is to move from CSSLint to StyleLint, see https://discuss.codemirror.net/t/promises-support-for-the-linter-add-on/1140/4 for reference on how to make StyleLint work with CodeMirror.