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

84 lines
1.6 KiB
Markdown
Raw Normal View History

---
id: 6140cfc08ca9c5128c3e6478
title: Step 7
challengeType: 0
dashedName: step-7
---
# --description--
Nel selettore `.line` imposta `position` su `absolute`, `left` al `50%` e `top` al `50%`.
# --hints--
Il selettore `.line` dovrebbe avere una proprietà `position` con il valore `absolute`.
```js
assert(new __helpers.CSSHelp(document).getStyle('.line')?.position === 'absolute');
```
Il selettore `.line` dovrebbe avere una proprietà `left` con il valore `50%`.
```js
assert(new __helpers.CSSHelp(document).getStyle('.line')?.left === '50%');
```
Il selettore `.line` dovrebbe avere una proprietà `top` con il valore `50%`.
```js
assert(new __helpers.CSSHelp(document).getStyle('.line')?.top === '50%');
```
# --seed--
## --seed-contents--
```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>
```
```css
.wheel {
border: 2px solid black;
border-radius: 50%;
margin-left: 50px;
position: absolute;
height: 55vw;
width: 55vw;
max-width: 500px;
max-height: 500px;
}
--fcc-editable-region--
.line {
background-color: black;
width: 50%;
height: 2px;
}
--fcc-editable-region--
```