Files
freeCodeCamp/curriculum/challenges/english/01-responsive-web-design/basic-css/style-the-html-body-element.english.md
Valeriy 79d9012432 fix(curriculum): quotes in tests (#18828)
* fix(curriculum): tests quotes

* fix(curriculum): fill seed-teardown

* fix(curriculum): fix tests and remove unneeded seed-teardown
2018-10-20 23:32:47 +05:30

1.6 KiB

id, title, challengeType, videoUrl
id title challengeType videoUrl
bad87fee1348bd9aedf08736 Style the HTML Body Element 0 https://scrimba.com/c/cB77PHW

Description

Now let's start fresh and talk about CSS inheritance. Every HTML page has a body element.

Instructions

We can prove that the body element exists here by giving it a background-color of black. We can do this by adding the following to our style element:
body {
  background-color: black;
}

Tests

tests:
  - text: Give your <code>body</code> element the <code>background-color</code> of black.
    testString: assert($("body").css("background-color") === "rgb(0, 0, 0)", 'Give your <code>body</code> element the <code>background-color</code> of black.');
  - text: Make sure your CSS rule is properly formatted with both opening and closing curly brackets.
    testString: assert(code.match(/<style>\s*body\s*\{\s*background.*\s*:\s*.*;\s*\}\s*<\/style>/i), 'Make sure your CSS rule is properly formatted with both opening and closing curly brackets.');
  - text: Make sure your CSS rule ends with a semi-colon.
    testString: assert(code.match(/<style>\s*body\s*\{\s*background.*\s*:\s*.*;\s*\}\s*<\/style>/i), 'Make sure your CSS rule ends with a semi-colon.');

Challenge Seed

<style>

</style>

Solution

// solution required