--- id: 5d822fd413a79914d39e992d title: Part 100 challengeType: 0 dashedName: part-100 --- # --description-- Give the `fb4-window` elements a `width` of `30%`, `height` of `10%`, and `border-radius` of `50%`. These will make some circular windows for this building. # --hints-- test-text ```js const fb4w = code.match(/\.fb4-window\s*{[\s\S]+?[^}]}/g)[0]; assert( /width\s*:\s*30%\s*(;|})/g.test(fb4w) && /height\s*:\s*10%\s*(;|})/g.test(fb4w) && /border-radius\s*:\s*50%\s*(;|})/g.test(fb4w) ); ``` # --seed-- ## --seed-contents-- ```html freeCodeCamp Skyline Project
``` # --solutions-- ```html freeCodeCamp Skyline Project
```