--- id: 615f171d05def3218035dc85 title: Step 8 challengeType: 0 dashedName: step-8 --- # --description-- Your images are currently too large, and you will not be able to see your CSS changes. Create a `#gallery img` selector to target your images. Give it a `width` property set to `25%`. Also set the `height` property to `300px` to keep your images a uniform size. # --hints-- You should have a `#gallery img` selector. ```js assert.exists(new __helpers.CSSHelp(document).getStyle('#gallery img')) ``` Your `#gallery img` selector should have a `width` property set to `25%`. ```js assert(new __helpers.CSSHelp(document).getStyle('#gallery img')?.width === '25%') ``` Your `#gallery img` selector should have a `height` property set to `300px`. ```js assert(new __helpers.CSSHelp(document).getStyle('#gallery img')?.height === '300px'); ``` # --seed-- ## --seed-contents-- ```html