SASS Course - Issues

<style type='text/sass'>
  
  @for $j from 1 to 6 {
    .text-#{$j} { font-size: 10 * $j; }
  }
  
</style>

<p class="text-1">Hello</p>
<p class="text-2">Hello</p>
<p class="text-3">Hello</p>
<p class="text-4">Hello</p>
<p class="text-5">Hello</p>

This is my code and it works correctly, but still the website doesn’t allow me to go to next problem.

Thanks for replying.

I have tried switching to firefox, but it still doesn’t work!

Initially I tried using chrome.
Only the first one passes, rest shows failed.

Look at this too! The code here is correct. But the tests doesn’t work. :frowning:


Same issues with every code!

No errors in console! I’ll check it in chrome again.

You have problem with x declaration.

It should be $x :1; instead $1:1 ;

code for this challenge

https://learn.freecodecamp.org/front-end-libraries/sass/apply-a-style-until-a-condition-is-met-with-while/

Cool Thanx for this thread