--- id: 5d822fd413a79914d39e991e title: Part 85 challengeType: 0 dashedName: part-85 --- # --description-- Give the `fb2-window` elements a `width` of `22%`, `height` of `100%`, and a `background-color` of your `--window-color3` variable. # --hints-- test-text ```js const fb2w = code.match(/\.fb2-window\s*{[\s\S]+?[^}]}/g)[0]; assert( /width\s*:\s*22%\s*(;|})/g.test(fb2w) && /height\s*:\s*100%\s*(;|})/g.test(fb2w) && /background-color\s*:\s*var\(\s*--window-color3\s*\)\s*(;|})/g.test(fb2w) ); ``` # --seed-- ## --seed-contents-- ```html freeCodeCamp Skyline Project
``` # --solutions-- ```html freeCodeCamp Skyline Project
```