Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sass Invalid CSS: expected expression (e.g. 1px, bold), was "{"

Tags:

css

sass

I have the following Sass, following this example for @each:

@each $flag in USA, EUR, JPN {
  a.#{$flag} {
    display:inline-block;
    overflow:hidden;
    width:0;
    height:11px;
    padding-left:16px; 
    background:url('http://res.cloudinary.com/mrengy/image/upload/v1470163121/#{$flag}.gif');
  }
}

It's just an example for an answer to another question. In CodePen, it is giving me an error:

Invalid CSS after "USA, EUR, JPN ": expected expression (e.g. 1px, bold), was "{"

Here's the example on CodePen.

That error makes no sense. What is the problem here?

like image 230
Mike Eng Avatar asked Aug 02 '16 19:08

Mike Eng


1 Answers

Your code is actually SCSS, not SASS.

To make it work as SASS, you need to get rid of curly braces, semi-colons and add some spaces.

Here's the corrected code:

@each $flag in USA, EUR, JPN 

  a.#{$flag} 
    display:inline-block
    overflow:hidden
    width: 0
    height: 11px
    padding-left: 16px
    background: url('http://res.cloudinary.com/mrengy/image/upload/v1470163121/#{$flag}.gif') no-repeat

https://codepen.io/vic3685/pen/akaEyo?editors=1100

like image 116
Victoria Ruiz Avatar answered Nov 18 '22 21:11

Victoria Ruiz