---
id: 619d115e2adcd71538e82ebb
title: Step 68
challengeType: 0
dashedName: step-68
---
# --description--
Target the `.beak` elements, and give them a `height` of `10%`, `background-color` of `orange`, and give all corners a radius of `50%`.
# --hints--
You should use the `.beak` selector.
```js
assert.match(code, /\.beak\s*\{/);
```
You should give `.beak` a `height` of `--fcc-expected--`, found `--fcc-actual--`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.beak')?.height, '10%');
```
You should give `.beak` a `background-color` of `--fcc-expected--`, found `--fcc-actual--`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.beak')?.backgroundColor, 'orange');
```
You should give `.beak` a `border-radius` of `--fcc-expected--`, found `--fcc-actual--`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.beak')?.borderRadius, '50%');
```
# --seed--
## --seed-contents--
```html