Learn Basic CSS by Building a Cafe Menu - Step 13

Tell us what’s happening:
Describe your issue in detail here.i have tried to replace the selectors as asked but all methods seem not to work.so the question is what am i supposed to replace? element, property or value and with what selector?

Your code so far
h1 {
selector1: center;
}
h2 {
selector1: center;
}
p {
selector1: center;
}

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <title>Cafe Menu</title>

<!-- User Editable Region -->

    <style>
      h1 {
        text-align: selector2;
      }
      h2 {
        text-align:  selector2;
      }
      p {
        text-align:  selector2;
      }
    </style>

<!-- User Editable Region -->

  </head>
  <body>
    <main>
      <h1>CAMPER CAFE</h1>
      <p>Est. 2020</p>
      <section>
        <h2>Coffee</h2>
      </section>
    </main>
  </body>
</html>

Your browser information:

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

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

Link to the challenge:

This is what you have got in the challenge. Don’t change the value in all selectors:

text-align: center;

but i changed the element first and it still didnt work

Instead of “selector 2” in all three selectors separately: h1, h2, p you should have text-align: center; for all three selectors together:

seletoctor1, selector2, selector3 {
  text-align: center;
}
1 Like

THE ANSWER NEEDS TO BE IN THIS FORMATE

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