Files
freeCodeCamp/curriculum/challenges/english/01-responsive-web-design/css-box-model/step-016.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.2 KiB

id, title, challengeType, dashedName
id title challengeType dashedName
60a3e3396c7b40068ad69979 Step 16 0 step-16

--description--

Add a new div element inside of your .canvas element.

Give the new div the class attribute with a value of one. This will be your first rectangle.

--hints--

You should create a new div element.

assert(document.querySelectorAll('div').length === 3);

You should nest the new div element within your .canvas element.

assert(document.querySelector('.canvas').children[0].tagName === 'DIV');

Your new div should have a class attribute with a value one.

assert(document.querySelector('.canvas').children[0].className.split(' ').includes('one'));

--seed--

--seed-contents--

.canvas {
  width: 500px;
  height: 600px;
  background-color: #4d0f00;
}

.frame {
  border: 50px solid black;
  width: 500px;
  padding: 50px;
  margin: 20px auto;
}
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Rothko</title>
    <link href="./styles.css" rel="stylesheet">
  </head>
  <body>
    <div class="frame">
      <div class="canvas">
--fcc-editable-region--

--fcc-editable-region--
      </div>
    </div>
  </body>
</html>