--- id: 617ace7d831f9c16a569b38a title: Passo 5 challengeType: 0 dashedName: step-5 --- # --description-- DĂȘ ao seletor `.wheel` as propriedades `max-height` e `max-width` com o valor de `500px`. # --hints-- O seletor `.wheel` deve ter a propriedade `max-height` definida para `500px`. ```js assert(new __helpers.CSSHelp(document).getStyle('.wheel')?.maxHeight === '500px'); ``` O seletor `.wheel` deve ter a propriedade `max-width` definida para `500px`. ```js assert(new __helpers.CSSHelp(document).getStyle('.wheel')?.maxWidth === '500px'); ``` # --seed-- ## --seed-contents-- ```html Ferris Wheel
``` ```css --fcc-editable-region-- .wheel { border: 2px solid black; border-radius: 50%; margin-left: 50px; position: absolute; height: 55vw; width: 55vw; } --fcc-editable-region-- ```