---
id: 5d822fd413a79914d39e992f
title: Step 102
challengeType: 0
dashedName: step-102
---
# --description--
Add `display: flex` and `flex-wrap: wrap` to the window container. This will put your windows side by side, and then push them down to a new row when they don't fit.
# --hints--
You should give `.fb4b` a `display` of `flex`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle(".fb4b")?.display, "flex");
```
You should give `.fb4b` a `flex-wrap` of `wrap`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle(".fb4b")?.flexWrap, "wrap");
```
# --seed--
## --seed-contents--
```html
    
  
    City Skyline