Learn Basic CSS by Building a Cafe Menu - Step 18

Tell us what’s happening:

I’m not sure what to do please help. I have tried looking using the read and search part so all that is left is to ask for help.

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Cafe Menu</title>
    <link href="styles.css" rel="stylesheet"/>
  </head>
  <body>
    <main>
      <h1>CAMPER CAFE</h1>
      <p>Est. 2020</p>
      <section>
        <h2>Coffee</h2>
      </section>
    </main>
  </body>
</html>
/* file: styles.css */

/* User Editable Region */

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

/* User Editable Region */


Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36

Challenge Information:

Learn Basic CSS by Building a Cafe Menu - Step 18

first you added style to the elements h1, h2, p.
now you must do a similar thing for the element body, and set the background-color property to brown.

example: here i am styling the element header by setting its background-color property to yellow

header {
    background-color: yellow;
}

Hello!

Along with the good guidance provided by @luisclaudioc, I suggest removing the comma after the p element. If it remains it will prevent passing the step.

Please remove

I believe there was misunderstanding in the instructions (because I did the same thing at first when I completed this step).

The style for the background-color property is to be added to the new body selector which could be added below the current selector for the h1, h2, p elements.

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