I think I have some browser zoom issue that makes me unable to past this test. I have tried to reset the zoom of the window from minimum to maximum. Nothing worked so far. Is there a quick fix for this problem?Thank you.
Browser zoom isn’t your issue. That hint is in there because it’s possible to fail the tests even if your code is correct when your zoom is weird. In this case, your image is not set to 100 pixels wide because you have an error in how you declared your selector. To declare a class selector, you need to use a period (.), like the .red-text selector above. Just using smaller-image {... would be creating a selector for an element that looks like <smaller-image>...</smaller-image>, like the p and h2 selectors above.
Thanks, I have added the dot but the problem is still the same, the error is still the zoom. I also reset the lesson and tried again, nothing has changed. And I don’t know why wether I added the dot or not, it would still select the smaller-image.
On Firefox and Chrome [ctrl]+[0] will reset the browser to 100%. If you’re still having issues, you might have something else funky going on with your browser. Do you have any extensions that change the appearance of websites (such as a dark mode extension)?
The correct code does work in Chrome, so there may be something funky with your Chrome configurations. I don’t know if whatever issue you’re having will affect other challenges or not.