2019-11-04 21:01:05 -06:00
---
id: 5d822fd413a79914d39e98d0
title: Part 8
challengeType: 0
2021-01-13 03:31:00 +01:00
dashedName: part-8
2019-11-04 21:01:05 -06:00
---
2020-11-27 19:02:05 +01:00
# --description--
2019-11-04 21:01:05 -06:00
2021-07-16 04:46:40 +01:00
It's tough to see now, but there's a border at the edge of your preview, that's the `body` . Create a `div` element in the `body` with a class of `background-buildings` . This will be a container for a group of buildings.
2019-11-04 21:01:05 -06:00
2020-11-27 19:02:05 +01:00
# --hints--
2019-11-04 21:01:05 -06:00
2021-07-16 04:46:40 +01:00
You should create a `div` element.
2019-11-04 21:01:05 -06:00
2020-11-27 19:02:05 +01:00
```js
2021-07-16 04:46:40 +01:00
assert.exists(document.querySelector('div'));
```
Your `div` element should be within the `body` .
```js
assert(document.querySelector('div')?.parentElement?.localName === 'body');
```
Your `div` element should have a class of `background-buildings`
```js
assert([...document.querySelector('div')?.classList]?.includes('background-buildings'));
2019-11-04 21:01:05 -06:00
```
2020-11-27 19:02:05 +01:00
# --seed--
2019-11-04 21:01:05 -06:00
2020-11-27 19:02:05 +01:00
## --seed-contents--
2019-11-04 21:01:05 -06:00
```html
<!DOCTYPE html>
<html>
<head>
<title>freeCodeCamp Skyline Project</title>
2021-07-16 04:46:40 +01:00
<link href="styles.css" rel="stylesheet" type="text/css" />
2019-11-04 21:01:05 -06:00
</head>
2021-07-16 04:46:40 +01:00
--fcc-editable-region--
2019-11-04 21:01:05 -06:00
<body>
2021-07-16 04:46:40 +01:00
2019-11-04 21:01:05 -06:00
</body>
2021-07-16 04:46:40 +01:00
--fcc-editable-region--
2019-11-04 21:01:05 -06:00
</html>
```
2021-07-16 04:46:40 +01:00
```css
* {
border: 1px solid black;
box-sizing: border-box;
}
2019-11-04 21:01:05 -06:00
2021-07-16 04:46:40 +01:00
body {
height: 100vh;
margin: 0;
overflow: hidden;
}
2019-11-04 21:01:05 -06:00
```
2021-07-16 04:46:40 +01:00