Learn Basic CSS by Building a Cafe Menu - Step 11

Tell us what’s happening:
Describe your issue in detail here.

Your code so far
I couldn’t solve the this challenge

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

<!-- User Editable Region -->

    <style>
      CAMPER CAFE {
        property: center; }
    </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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36

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

Link to the challenge:

It should be like explained in the instruction:

element {
 property: value;
}

h1 is the element,
‘text-align’ is the property,
“center” is the value.

Read the instructions again.

1 Like

thanks for your suggestions.

3 Likes

This response helped me! Thank you :tada:

2 Likes

Mod edit: removed code

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