Learn Basic CSS by Building a Cafe Menu - Step 22 Can someone please help me out on this one of commenting, I've been struggling for so long

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

/* file: index.Ext.html */
body {
  background-color: burlywood; 
/* comment here */
}
h1, h2, p {
  text-align: center;
}

div {
  width: 300px;
}
/* file: styles.Ext.css */
body {
  background-color: burlywood; 
/* comment here */
}
h1, h2, p {
  text-align: center;
}

div {
  width: 300px;
}

Your mobile information:

SM-A336E - Android 13 - Android SDK 33

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

Link to the challenge:

  background-color: burlywood;  goes instead of the text `comment here`

You have just added the /* comment here */ in the body selector. The background-color: burlywood; is already given (by default), so that line should be found between the /* and */ characters.

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