---
id: 5d822fd413a79914d39e9901
title: Part 57
challengeType: 0
dashedName: part-57
---
# --description--
Remove the `margin` and `border-top` properties and values from `.bb2a` to turn it into a triangle for the top of the building.
# --hints--
You should remove the `margin` from `.bb2a`.
```js
assert.isEmpty(new __helpers.CSSHelp(document).getStyle(".bb2a")?.margin);
```
You should remove the `border-top` from `.bb2a`.
```js
assert.isEmpty(new __helpers.CSSHelp(document).getStyle(".bb2a")?.borderTop);
```
# --seed--
## --seed-contents--
```html
    
  
    freeCodeCamp Skyline Project