Home > other >  Why I keep getting error in CSS Code in visual studio code?
Why I keep getting error in CSS Code in visual studio code?

Time:05-09

[VS code error1

Guys,

Can anyone advise why I keep seeing those errors in vs code? Where is my mistake?

regards, Emilia

CodePudding user response:

Try this...

.services .box-container {

    display: -ms-grid;
    display: grid;

    -ms-grid-column: (minmax(32rem, 1fr)) [auto-fit];
    grid-column: (minmax(32rem, 1fr)) [auto-fit];

    grid-template-columns: repeat(auto-fit, minmax(32rem, ifr));
    
    gap: 1.5rem;

}
  •  Tags:  
  • css
  • Related