Learn Basic CSS by Building a Cafe Menu - Step 12

Tell us what’s happening:

I am confused about how to center the content of the h2 and the p elements by adding a new type selector for each style i have done the read-search-ask method but I am still confused

Your code so far

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

<!-- User Editable Region -->

    <style>
    </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 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36

Challenge Information:

Learn Basic CSS by Building a Cafe Menu - Step 12

<style>
      h1 {
        text-align: center;
      }
    </style>

In the code see the h1 type is selected and its content has been centered.

Now the instructions in the same way want you to select the type h2 and center its content.

Then also select the p type and center its content.

2 Likes