--- id: 6153a3485f0b20591d26d2a1 title: Step 19 challengeType: 0 dashedName: step-19 --- # --description-- Smooth out your images a bit by giving the `#gallery img` selector a `border-radius` property of `10px`. # --hints-- Your `#gallery img` selector should have a `border-radius` property set to `10px`. ```js assert(new __helpers.CSSHelp(document).getStyle('#gallery img')?.borderRadius === '10px'); ``` # --seed-- ## --seed-contents-- ```html Photo Gallery

CSS FLEXBOX PHOTO GALLERY

``` ```css * { box-sizing: border-box; } body { margin: 0; font-family: Arial; background: #EBE7E7; } .header { text-align: center; padding: 32px; background: #E0DDDD; } #gallery { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center; align-items: center; padding: 0 4px; } --fcc-editable-region-- #gallery img { width: 25%; height: 300px; object-fit: cover; margin-top: 8px; padding: 0 4px; } --fcc-editable-region-- ```