--- id: 62a24128d5e8af1b47ad1aab title: Step 24 challengeType: 0 dashedName: step-24 --- # --description-- Using a selector list (`selector1, selector2`) give both your `#controls` and `#stats` elements a `border` of `1px solid #0a0a23`, a `#0a0a23` text color, and `5px` of `padding`. # --hints-- You should have a `#controls, #stats` selector list. ```js const selector = new __helpers.CSSHelp(document).getStyle('#controls, #stats'); assert.exists(selector); ``` Your `#controls, #stats` selector should have a `border` of `1px solid #0a0a23`. ```js assert.equal(new __helpers.CSSHelp(document).getStyle('#controls, #stats')?.border, '1px solid rgb(10, 10, 35)'); ``` Your `#controls, #stats` selector should have a `color` of `#0a0a23`. ```js const color = new __helpers.CSSHelp(document).getStyle('#controls, #stats')?.getPropertyValue('color'); assert.equal(color, 'rgb(10, 10, 35)'); ``` Your `#controls, #stats` selector should have `5px` of padding. ```js const padding = new __helpers.CSSHelp(document).getStyle('#controls, #stats')?.getPropertyValue('padding'); assert.equal(padding, '5px'); ``` # --seed-- ## --seed-contents-- ```html