--- id: 5d8a4cfbe6b6180ed9a1c9e8 title: Step 11 challengeType: 0 dashedName: step-11 --- # --description-- Later on, you will be adding more elements to the dashboard container. Set the `display` to `flex` and the `align-items` to `center` so those items will be vertically centered. # --hints-- test-text ```js const dashboard = $('.dashboard'); assert( dashboard.css('display') === 'flex' && dashboard.css('align-items') === 'center' ); ``` # --seed-- ## --before-user-code-- ```html