Tell us what’s happening:
It wont approve of my code because of my background
Your code so far
body {
background-color: #FFFFFF ;
}
.orange {
background-color: #FF7D00 ;
}
.cyan {
background-color: #00FFFF ;
}
.raspberry {
background-color: #FF007D ;
}
div {
height: 100px;
width: 100px;
margin-bottom: 5px;
}
```html
body {
background-color: #FFFFFF;
}
.orange {
background-color: #FF7D00;
}
.cyan {
background-color: #00FFFF;
}
.raspberry {
background-color: #FF007D;
}
div {
height: 100px;
width: 100px;
margin-bottom: 5px;
}
```
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.102 Safari/537.36
.
Challenge: Learn about Tertiary Colors
Link to the challenge:
Learn to code. Build projects. Earn certifications.Since 2015, 40,000 graduates have gotten jobs at tech companies including Google, Apple, Amazon, and Microsoft.
The hex codes you give for orange and raspberry are not the ones given in the problem description - they are close, but they need to be exact. When I change them, your code passes for me.
Thanks!!!
That helped a lot