---
id: 6148d99cdc7acd0c519862cb
title: Step 55
challengeType: 0
dashedName: step-55
---
# --description--
Target all `label` elements within `.info` elements, and set their `width` to `10%`, and make it so they do not take up less than `55px`.
# --hints--
You should use either the `.info label` or `.info > label` selector.
```js
const gs = (s) => new __helpers.CSSHelp(document).getStyle(s);
assert.exists(gs('.info label') || gs('.info > label'));
```
You should give the `label` elements a `width` of `10%`.
```js
const gs = (s) => new __helpers.CSSHelp(document).getStyle(s)?.width;
const width = gs('.info label') || gs('.info > label');
assert.equal(width, '10%');
```
You should give the `label` elements a `min-width` of `55px`.
```js
const gs = (s) => new __helpers.CSSHelp(document).getStyle(s)?.minWidth;
const minWidth = gs('.info label') || gs('.info > label');
assert.equal(minWidth, '55px');
```
# --seed--
## --seed-contents--
```html