--- id: bad87fee1348bd9aedf08736 title: Style the HTML Body Element challengeType: 0 videoUrl: 'https://scrimba.com/c/cB77PHW' forumTopicId: 18313 localeTitle: 给 HTML 的 Body 元素添加样式 --- ## Description
现在让我们来讨论一下 CSS 继承。 每一个 HTML 页面都含有一个body元素。
## Instructions
我们可以通过设置background-colorblack,来证明body元素的存在。 添加以下的代码到style标签里面: ```css body { background-color: black; } ```
## Tests
```yml tests: - text: 'body元素的background-color应该是黑色的。' testString: assert($("body").css("background-color") === "rgb(0, 0, 0)"); - text: '确保 CSS 规则格式书写正确,需要开关大括号。' testString: assert(code.match(/ ```
## Solution
```html // solution required ```