freeCodeCamp/curriculum/challenges/italian/14-responsive-web-design-22/learn-css-animation-by-buil.../6140cd32d018ed0f600eefce.md

1.5 KiB

id title challengeType dashedName
6140cd32d018ed0f600eefce Step 4 0 step-4

--description--

Imposta la proprietà position del selettore .wheel su absolute. Imposta entrambe le proprietà height e width a 55vw.

--hints--

Il selettore .wheel dovrebbe avere una proprietà position impostata su absolute.

assert(new __helpers.CSSHelp(document).getStyle('.wheel')?.position === 'absolute');

Il selettore .wheel dovrebbe avere una proprietà height impostata su 55vw.

assert(new __helpers.CSSHelp(document).getStyle('.wheel')?.height === '55vw');

Il selettore .wheel dovrebbe avere una proprietà width impostata su 55vw.

assert(new __helpers.CSSHelp(document).getStyle('.wheel')?.width === '55vw');

--seed--

--seed-contents--

<!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>
--fcc-editable-region--
.wheel {
  border: 2px solid black;
  border-radius: 50%;
  margin-left: 50px;
}
--fcc-editable-region--