This commit adds the pre-existing challenge guide topics in the forum to the forntmatter of their challenge markdown files.
		
			
				
	
	
	
		
			1.4 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.4 KiB
		
	
	
	
	
	
	
	
id, title, challengeType, videoUrl, forumTopicId
| id | title | challengeType | videoUrl | forumTopicId | 
|---|---|---|---|---|
| bad87fee1348bd9aedf08736 | Style the HTML Body Element | 0 | https://scrimba.com/c/cB77PHW | 18313 | 
Description
body element.
Instructions
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)");
  - 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));
  - 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));
Challenge Seed
<style>
</style>
Solution
<style>
body {
  background-color: black;
}
</style>