Learn Basic CSS by Building a Cafe Menu - Step 22

Tell us what’s happening: please I’m unable to comment out the background line
Describe your issue in detail here.

Your code so far

/* file: index.Ext.html */
body {
/* comment out line: background: burlywood;*/ background-color: burlywood;
}

h1, h2, p {
  text-align: center;
}

#menu {
  width: 300px;
}
/* file: styles.Ext.css */
body {
/* comment out line: background: burlywood;*/ background-color: burlywood;
}

h1, h2, p {
  text-align: center;
}

#menu {
  width: 300px;
}

Your mobile information:

TECNO KI5k - Android 12 - Android SDK 31

Challenge: Learn Basic CSS by Building a Cafe Menu - Step 22

Link to the challenge:

You appear to have created this post without editing the template. Please edit your post to Tell us what’s happening in your own words.
Learning to describe problems is hard, but it is an important part of learning how to code.
Also, the more you say, the more we can help!

1 Like

Welcome to the forum @Aniblack

Since the end of the comment appears before the background-color property, your code is currently not commenting any styling property.

Please reset the step to restore the original code, and try again.

Happy coding

Example

/* Your content */

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