--- id: 617ace7d831f9c16a569b38a title: 步驟 5 challengeType: 0 dashedName: step-5 --- # --description-- 給你的 `.wheel` 選擇器一個 `max-height` 和 `max-width` 屬性,都設置爲 `500px`。 # --hints-- 你的 `.wheel` 選擇器應該有一個 `max-height` 屬性設置爲 `500px`。 ```js assert(new __helpers.CSSHelp(document).getStyle('.wheel')?.maxHeight === '500px'); ``` 你的 `.wheel` 選擇器應該有一個 `max-width` 屬性設置爲 `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-- ```