Learn Basic CSS by Building a Cafe Menu - Step 18

Tell us what’s happening:
Describe your issue in detail here.
Hello i know the answer i have found it just now when writting this post but i dont understand it.
My probleme is the styles.css
They asked me to add an element to the body like i did with h1 but the thing i dont understand is why i cant use body> and h1> but only with the element{} ? (removed the < so you see)
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 */
<body>
h1, h2, p {
  background_color: brown;
  text-align: center;
}
</body>

Your browser information:

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

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

Link to the challenge:

1 Like

You don’t use HTML tags in CSS, you use selectors instead. So if you want to target a specific element, such as the body element, then the selector would just be the name of the element (body in this case). Just like in the current CSS selector:

h1, h2, p { ... }

This selector list is targeting all h1, h2, and p elements. No need to use the actual HTML tags for these elements, just the element names.

1 Like