What does Webstorm tooltip say "display:subgrid" is a "mismatched property value" for SCSS and highlights it as an error?

Basically what the title says: in my SCSS I have a line that says "display:subgrid".  Webstorm puts a squiggly red line underneath to indicate an error and when I mouse over I get a tooltip that this is a "mismatched property value".  But is it?

0
1 comment

subgrid is marked deprecated in https://developer.mozilla.org/en-US/docs/Web/CSS/display#display-inside, and missing in https://drafts.csswg.org/css-display-3/#typedef-display-inside... And it's not yet supported by any browser according to browser compatibility table. Though it's a part of CSS grid 2 draft spec (https://drafts.csswg.org/css-grid-2/). So i'm not sure if it worth adding. Anyway,. please feel free to file a request to youtrack on this, https://youtrack.jetbrains.com/issues/WEB

0

Please sign in to leave a comment.