Continuing the discussion from freeCodeCamp Challenge Guide: Make Typography Responsive:
Even though the solution and my solution is exactly the same, the test does not pass for my solution.
Continuing the discussion from freeCodeCamp Challenge Guide: Make Typography Responsive:
Even though the solution and my solution is exactly the same, the test does not pass for my solution.
Sometimes extensions will interfere with freeCodeCamp. Adblockers are one of the ones that prevent tests from running correctly.
Ok, removing Adblocker did not make it work either.
It’s possible that you have another extension that is interfering. It’s also possible that your browser cache got in a weird state.
Try
If that doesn’t work there’s probably something like an extension fighting with freeCodeCamp.
It is because of the space between width
and the colon :
width :
Should be:
width:
@lasjorg is the real MVP.
So Stupid of me. I used some auto formatter and it did this to me
If you’re writing your code in a text editor that does automatic formatting, you should be able to change the formatter settings not to put a space before colons.
Thanks a lot for sticking around and for this suggestion !