Learn CSS Animation by Building a Ferris Wheel - Step 4

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

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Ferris Wheel</title>
    <link rel="stylesheet" href="./styles.css">
  </head>
  <body>
    <div class="wheel">
      <span class="line"></span>
      <span class="line"></span>
      <span class="line"></span>
      <span class="line"></span>
      <span class="line"></span>
      <span class="line"></span>

      <div class="cabin"></div>
      <div class="cabin"></div>
      <div class="cabin"></div>
      <div class="cabin"></div>
      <div class="cabin"></div>
      <div class="cabin"></div>
    </div>
  </body>
</html>
/* file: styles.css */

/* User Editable Region */

.wheel {
  position: absolute;
  heigth: 55vw;
  width: 55vw;
  border: 2px solid black;
  border-radius: 50%;
  margin-left: 50px;
}

/* User Editable Region */

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36

Challenge: Learn CSS Animation by Building a Ferris Wheel - Step 4

Link to the challenge:

@torrejosricardo1 welcome to the community!

Please, describe the issue you’re having so that we can help you better. :raised_hands:

hello and welcome to fcc forum :slight_smile:

  • a typo, is what causing this to fail!!

address that change and it should be alright, happy learning :slight_smile:

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