---
id: 5d822fd413a79914d39e98ff
title: Step 55
challengeType: 0
dashedName: step-55
---
# --description--
Next, remove the `width` and `height` from `.bb2a`, and change the `border-left` and `border-right` to use `5vw` instead of `1vw`. The element will now have zero size and the borders will come together in the middle.
# --hints--
You should remove the `width` from `.bb2a`.
```js
assert.isEmpty(new __helpers.CSSHelp(document).getStyle(".bb2a")?.width);
```
You should remove the `height` from `.bb2a`.
```js
assert.isEmpty(new __helpers.CSSHelp(document).getStyle(".bb2a")?.height);
```
You should change the `border-left` to use `5vw`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle(".bb2a")?.borderLeft, "5vw solid rgb(153, 153, 153)");
```
You should change the `border-right` to use `5vw`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle(".bb2a")?.borderRight, "5vw solid rgb(153, 153, 153)");
```
# --seed--
## --seed-contents--
```html