Improve Compatibility with Browser Fallbacks .... this is css

Tell us what’s happening:

Your code so far


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

Your browser information:

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

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

@jawsh what exactly is your problem?

how do i make the .redbox rule include a fallback with the background set to red immediately before the existing background declaration.

i’m really kinda new to this… Thanks

You just add a normal background: red declaration before the variable on the empty line above.

@jawsh welcome. This will help you. Read the instructions for the exercise properly and understand it. The answer is actually in:grinning: the last paragraph of the write-up. Though @lasjorg already answered the question.

it worked, thanks …:+1:

Thanks… it worked:+1::+1::+1::+1::+1: