Learn Basic CSS by Building a Cafe Menu - Step 19

**how do i use body selector for backgruond color

  **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>
  <header>
    <h1>CAMPER CAFE</h1>
    <p>Est. 2020</p>
  </header>
  <main>
    <section>
      <h2>Coffee</h2>
    </section>
  </main>
</body>
</html>
/* file: styles.css */
h1, h2, p {
text-align: center;
<body style="background-color: brown">

  **Your browser information:**

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

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

Link to the challenge:

hello and welcome to the forum.

Let me go back a step first before answering.

So far you have the following css code:

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

What does this code do?

It asks the browser to select all h1, h2 and p elements and apply a specific styling to them (in this case the text-align: center style).

So now you’re asked to add a body selector.
This should be very similar to the above code but instead of selecting those h1/h2/p, you are telling the browser you want body.
So just do exactly what you did before for the other tags selectors…

As for the style of background-color, well that is also treated the same way as the above ‘text-align: center;’ line. You just need to add a line that is formatted the same way inside the curly braces for the body selector.

so to conclude: to use a body selector, just do the same thing that you did to use a h1/h2/p selector.

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