Improve Compatibility with Browser Fallbacks89

–**Tell us what’s happe
I really need help on this

Your code so far


<style>
  :root {
    --red-color: red;
  }
  .red-box {
    background: red;
    background: var(--red-color,red);
    height: 200px;
    width:200px;
  }
</style>
<div class="red-box"></div>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 UBrowser/7.0.185.1002 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/basic-css/improve-compatibility-with-browser-fallbacks/

Hello!

Your issue is that you edited this line and shouldn’t:
background: var(--red-color,red);

-J