Overflow:clip property not seen anywhere instead found overflow:hidden

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

I have searched google for overflow:clip property but not found anywhere instead of that I found overflow:hidden.

  **Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html>

<head>
  <meta charset="UTF-8" />
  <link rel="stylesheet" type="text/css" 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 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36

Challenge: Step 5

Link to the challenge:

You can read about the clip value on MDN.

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