By adding the “.” to silver I got the 2nd of 3 challenges.
Your div element should have the class silver-background .
Your div element should have a silver background.
A class named silver-background should be defined within the style element and the value of silver should be assigned to the background-color property.
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.
Try giving your div element the class of “silver-background”, I’m sure you’ve learned how to apply id’s and classes in previous freeCodeCamp lessons, so that’s sorted, now remove this property background: "silver-background"; from the code snippet you posted , that’s causing a problem.
Hi Ilenia. I noticed that my progress has been wiped out in the courses I took. Why is that? All of what I have done has been un-checkmarked. Apologies for asking openly I am struggling to find or contact people on the website.
The new Responsive Web Design curriculum content has been released.
FAQ:
Can I complete the old content?
Yes. The old content is still available, and has been moved to the bottom of the curriculum map and renamed to Responsive Web Design Legacy
What will happen to my progress?
Nothing. Your past progress will still be available in the Responsive Web Design Legacy curricula
Can I claim the old certificate?
The certifications are exactly the same. All you need to claim a certificate is to complete the 5 Certification Projects which are identical for both the Responsive Web Design and Responsive Web Design Legacy curricula
Should I stop doing the legacy content, and just start over with the new content?
This is entirely up to you. Majority of the topics are the same - just taught in a different way. (See Project-Based Curricula)
How do I use the new editor?
The new editor is as close to an external text editor as we wanted to get it. If the files for the challenge have been enabled, you can access the index.html and styles.css tabs which you should use for the respective code.
Two main differences between this editor and other online editors:
You need to link your styles.css file to your HTML (just like you would in real web-development), by adding the following line to the head of your HTML:
<link href="styles.css" />
You are encouraged to include the DOCTYPE, html, head and body tags for each project.