--- id: 5d822fd413a79914d39e98e8 title: Part 32 challengeType: 0 dashedName: part-32 --- # --description-- Add the same `display`, `align-items`, and `justify-content` properties and values to `foreground-buildings` that you used on `background-buildings`. Again, this will use Flexbox to evenly space the buildings across the bottom of their container. # --hints-- test-text ```js const fb = $('.foreground-buildings'); assert( fb.css('display') === 'flex' && fb.css('align-items') === 'flex-end' && fb.css('justify-content') === 'space-evenly' ); ``` # --seed-- ## --seed-contents-- ```html freeCodeCamp Skyline Project
``` # --solutions-- ```html freeCodeCamp Skyline Project
```