--- id: 5d822fd413a79914d39e992a title: Part 97 challengeType: 0 dashedName: part-97 --- # --description-- Give `fb4b` a `width` of `100%` and `height` of `89%`. # --hints-- test-text ```js const fb4b = code.match(/\.fb4b\s*{[\s\S]+?[^}]}/g)[0]; assert( /width\s*:\s*100%\s*(;|})/g.test(fb4b) && /height\s*:\s*89%\s*(;|})/g.test(fb4b) ); ``` # --seed-- ## --seed-contents-- ```html freeCodeCamp Skyline Project
``` # --solutions-- ```html freeCodeCamp Skyline Project
```