---
id: 612ebe7fe6d07e6b76d1cae2
title: Step 28
challengeType: 0
dashedName: step-28
---
# --description--
Add a new `#piano` selector within your `@media` query, and set the `width` to `358px`.
# --hints--
Your `@media` rule should have a `#piano` selector.
```js
const rules = new __helpers.CSSHelp(document).getRuleListsWithinMedia('(max-width: 768px)');
const piano = rules?.find(rule => rule.selectorText === '#piano');
assert(piano);
```
Your new `#piano` selector should have a `width` of `358px`.
```js
const rules = new __helpers.CSSHelp(document).getRuleListsWithinMedia('(max-width: 768px)');
const piano = rules?.find(rule => rule.selectorText === '#piano');
assert(piano?.style.width === '358px');
```
# --seed--
## --seed-contents--
```html