Add-borders-around-your-elements

I can’t pass the tests, although I took the solution from the hint

Your image should have a border width of 10px .

Your image should have a border style of solid .

The border around your img element should be green.

<style>
...

.thick-green-border {
border-width: 10px;
border-style: solid;
border-color: green;
}
</style>

<a href="#"><img class="thick-green-border smaller-image" 
src="https://bit.ly/fcc-relaxing-cat" 
alt="A cute orange cat lying on its back."></a>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36

Challenge: Add Borders Around Your Elements

Link to the challenge:

Assuming that you didn’t change anything else in the provided code, your solution passes the tests when I run it. What browser are you using? Are you using any extensions that change the appearance of websites or that block scripts (like an AdBlock extension)?

I am using firefox. I tried edge and the tests passed. Thanks

Does that mean that some apps don’t allow test to be runned

Some browser extensions will prevent the tests from running correctly, yes.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.