Pls someone should help me . how can i get out of this place

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/89.0.4389.128 Safari/537.36.

Challenge: Improve Compatibility with Browser Fallbacks

Link to the challenge:

Solution:

<style>
  :root {
    --red-color: red;
  }
  .red-box {
    background: red; /*This is the browser fall back*/
    background: var(--red-color);
    height: 200px;
    width:200px;
  }
</style>
<div class="red-box"></div>

I suggest you know more about browser fall back.

@MAZ1211

It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.

We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.

You can post solutions that invite discussion (like asking how the solution works, or asking about certain parts of the solution). But please don’t just post your solution for the sake of sharing it.
If you post a full passing solution to a challenge and have questions about it, please surround it with [spoiler] and [/spoiler] tags on the line above and below your solution code.

1 Like

thank you much, i really appreciate your effort.

That’s actually a good idea.
Maybe copying a solution isn’t a good idea.
Got it!

1 Like

Is ok

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