Building a Penguin - Step 5

Tell us what’s happening:
I can not pass this step. It says “You should give body a overflow of clip“. As you can see in my code that is exactly what I did. I also disabled the dark mode function and I tried it with other browsers like Chrome and even Firefox, but it does not work.
Please can you help me?

  **Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8" />
  <link rel="stylesheet" href="./styles.css" />
  <title>Penguin</title>
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>

<body>
</body>
</html>
/* file: styles.css */
body {
background: linear-gradient(45deg, rgb(118, 201, 255), rgb(247, 255, 222));
margin: 0;
padding: 0;
width: 100%;
height: 100vh;
overflow: clip;

}
  **Your browser information:**

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

Challenge: Learn CSS Transforms by Building a Penguin - Step 5

Link to the challenge:

it worked on my end.
And i use chrome.

You should try disabling some extensions. some extensions affect the code execution

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