Aprende CSS Transforms construyéndo un pingüino - Paso 5

Cuéntanos qué está pasando:

hi ! following the help they offer said >You should give body an overflow of --fcc-expected–. But found --fcc-actual–.

body {
background: linear-gradient(45deg, rgb(118, 201, 255), rgb(247, 255, 222));
margin: 0;
padding: 0;
width: 100%;
height: 100vh;
overflow: clip;
}
I found some past answers , to give the valor clip for the overflow attribute but still not working . any help on this , tnks

Tu código hasta el momento

<!-- 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 */

/* User Editable Region */

body {
  background: linear-gradient(45deg, rgb(118, 201, 255), rgb(247, 255, 222));
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  overflow: clip;
  

}

/* User Editable Region */

Información de tu navegador:

El agente de usuario es: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36

Información del Desafío:

Aprende CSS Transforms construyéndo un pingüino - Paso 5

The test expects you to use hidden not clip.


It should pass either way, but I guess the test would need to be updated.

Using clip is considered a better approach by many as it doesn’t create a scroll container. I recently ran into that issue, playing around with the new CSS scroll-driven animations.

appreciate your help , plus tnks for the scroll-driven animation.