here i stucked please help someone
Step 22
Comments in CSS look like this:
Example Code
/* comment here */
In your style sheet, comment out the line containing the background-color
property and value, so you can see the effect of only styling the #menu
element. This will make the background white again.
body {background-color: white;
/* background-color: burlywood; */
}
h1, h2, p {
text-align: center;
}
#menu {
width: 300px;
/* background-color: white; */
}
Error massage showing
Sorry, your code does not pass. Keep trying.
Your body
should have a white background.