Tell us what’s happening:
What is wrong with my code? I exactly do the thing mentioned in the description but still gives me errors. I have been stuck in this step for two days now
I believe the goal of this step is only colored all the text that included in the div element which include camper cafe, 2020, coffee. It should be look like this
The symbol of / * */ is only used for comment in CSS. Instead right now you need to implement it into a code. So delete the / and use the right spacing for your code
Thank you
This is the latest code I have. Could you please elt me know where I need to put the /**/ to comment out? Still doesnt work
body {
background-color :burlywood;
}
h1, h2, p {
text-align: center;
}
div {
background-color :burlywood;
width: 300px;
}
h1, h2, p {
text-align: center;
}
The outcome of this code is the same as you showed in your message but still gives me the error
div {
background-color :burlywood;
width: 300px;
}
body {
/*
background-color: burlywood;
*/
}
h1, h2, p {
text-align: center;
}
div {
width: 300px;
background-color: (color as instructed)
}
Your default code should be like this. So You only need one div and add the property of background color. You don’t need to add another element or property and value beside background color and the value asked by the instruction