Files
freeCodeCamp/curriculum/challenges/english/01-responsive-web-design/css-variables-skyline/step-008.md
Nicholas Carrigan (he/him) b36cdbafd1 chore: rename "part" to "step" (#43934)
* chore: rename part to step

* chore: update metas

* chore: more renaming

* chore: update tooling

* chore: update frontmatter

* chore(tools): title testing
2021-10-21 18:07:52 +01:00

1.1 KiB

id, title, challengeType, dashedName
id title challengeType dashedName
5d822fd413a79914d39e98d0 Step 8 0 step-8

--description--

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.

--hints--

You should create a div element.

assert.exists(document.querySelector('div'));

Your div element should be within the body.

assert(document.querySelector('div')?.parentElement?.localName === 'body');

Your div element should have a class of background-buildings

assert([...document.querySelector('div')?.classList]?.includes('background-buildings'));

--seed--

--seed-contents--

<!DOCTYPE html>
<html>    
  <head>
    <title>freeCodeCamp Skyline Project</title>
    <link href="styles.css" rel="stylesheet" type="text/css" />
  </head>
--fcc-editable-region--
  <body>

  </body>
--fcc-editable-region--
</html>
* {
  border: 1px solid black;
  box-sizing: border-box;
}

body {
  height: 100vh;
  margin: 0;
  overflow: hidden;
}