For browser compatibility using the.red-box class that should include a fallback with the background

Tell us what’s happening:

Your code so far


<style>
.red-box {
  --red-color:red ;
}
.red-box {

  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 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36.

Challenge: Improve Compatibility with Browser Fallbacks

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

All you need to do is set the background to red like you would normally do it. Put it right before/above the other background declaration (more info).

Example using padding:

:root {
 --padding-large: 20px; 
}

p {
  padding: 20px;
  padding: var(--padding-large);
}

I have already passed this, but I am pretty sure all you have to do is type in

background: red; 

Above the

background: var(--red-color,red); 

It worked I tried doing it and I passed the challenge…thank you