---
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--
You should give `.fb4a` a `border-top` of `5vh solid transparent`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle(".fb4a")?.borderTop.trim(), "5vh solid transparent")
```
You should give `.fb4a` a `border-left` of `8vw solid var(--building-color1)`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle(".fb4a")?.borderLeft.trim(), "8vw solid var(--building-color1)")
```
# --seed--
## --seed-contents--
```html
    
  
    freeCodeCamp Skyline Project