Scroll bar absent on step 18 of "Learn Basic CSS by Building a Cafe Menu" in new Responsive Web Design (RWD) Certification

Is this the right place for this? I have feedback on a small issue with the new RWD, on step 18 of the 2nd project (Coffee Menu & CSS).

It seemingly directs us to enter only:

"<meta name=“viewport” content=“width=device-width,”

I did and it wasn’t working.

It turns out I had to scroll to see the rest of the meta element, but you actually do not see and cannot click the scroll bar (at least on my MacBook).

A quick fix is that you can scroll by pressing “→” on your keyboard.

Bringing this up in case any other fellow n00bs are confused and because I imagine the freecodecamp team would be interested in it.

Thanks so much for the amazing resource, freecodecamp team!

  **Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html>
<head>
  <meta name="viewport" content="width=device-width,
  <meta charset="utf-8" />
  <title>Cafe Menu</title>
  <link href="styles.css" rel="stylesheet" type="text/css" />
</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;
}
  **Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15

Challenge: Step 18

Link to the challenge:

You are you using MacBook? Hmm…I am using windows the scroll bar is working for me
Maybe you can pull up an issue on GitHub Issues (FreeCodeCamp).

1 Like

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