--- id: 6153938dce8b294ff8f5a4e9 title: Step 14 challengeType: 0 dashedName: step-14 --- # --description-- The `justify-content` property determines how the items inside a flex container are positioned along the main axis, affecting their position and the space around them. Give your `#gallery` selector a `justify-content` property set to `center`. # --hints-- Your `#gallery` selector should have a `justify-content` property set to `center`. ```js assert(new __helpers.CSSHelp(document).getStyle('#gallery')?.justifyContent === 'center'); ``` # --seed-- ## --seed-contents-- ```html