---
id: 60b69a66b6ddb80858c51596
title: Step 32
challengeType: 0
dashedName: step-32
---
# --description--
Move the table into place by giving it a `position` of `absolute`, a `top` value of `275px`, and a `left` value of `15px`.
# --hints--
Your `#tan-table` selector should have a `position` property set to `absolute`.
```js
assert(new __helpers.CSSHelp(document).getStyle('#tan-table')?.position === 'absolute');
```
Your `#tan-table` selector should have a `top` property set to `275px`.
```js
assert(new __helpers.CSSHelp(document).getStyle('#tan-table')?.top === '275px');
```
Your `#tan-table` selector should have a `left` property set to `15px`.
```js
assert(new __helpers.CSSHelp(document).getStyle('#tan-table')?.left === '15px');
```
# --seed--
## --seed-contents--
```html