--- id: 5d822fd413a79914d39e9930 title: Part 103 challengeType: 0 dashedName: part-103 --- # --description-- This building is going to have another triangle on top. Give the top section a `border-top` of `5vh solid transparent` and a `border-left` that is `8vw`, `solid`, and uses your building color variable as the color. # --hints-- test-text ```js const fb4a = code.match(/\.fb4a\s*{[\s\S]+?[^}]}/g)[0]; assert( /border-top\s*:\s*5vh\s+solid\s+transparent\s*(;|})/g.test(fb4a) && /border-left\s*:\s*8vw\s+solid\s+var\(\s*--building-color1\s*\)\s*(;|})/g.test( fb4a ) ); ``` # --seed-- ## --seed-contents-- ```html freeCodeCamp Skyline Project
``` # --solutions-- ```html freeCodeCamp Skyline Project
```