---
id: 6196d32d1340d829f0f6f57d
title: Step 26
challengeType: 0
dashedName: step-26
---
# --description--
Set the `position` property of the sun to prevent it from taking up space in the page layout, and set the `border-radius` such that the sun's shape is a circle.
# --hints--
You should give `.sun` a `position` of `absolute`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.sun')?.position, 'absolute');
```
You should give `.sun` a `border-radius` of `50%`.
```js
assert.equal(new __helpers.CSSHelp(document).getStyle('.sun')?.borderRadius, '50%');
```
# --seed--
## --seed-contents--
```html