2021-09-07 12:49:42 -07:00
|
|
|
---
|
|
|
|
id: 60b69a66b6ddb80858c5157b
|
2021-10-21 10:07:52 -07:00
|
|
|
title: Step 5
|
2021-09-07 12:49:42 -07:00
|
|
|
challengeType: 0
|
2021-10-21 10:07:52 -07:00
|
|
|
dashedName: step-5
|
2021-09-07 12:49:42 -07:00
|
|
|
---
|
|
|
|
|
|
|
|
# --description--
|
|
|
|
|
|
|
|
To get your painting started, give your `body` element a `background-color` of `rgb(184, 132, 46)`.
|
|
|
|
|
|
|
|
# --hints--
|
|
|
|
|
|
|
|
You should use the `body` selector.
|
|
|
|
|
|
|
|
```js
|
|
|
|
assert(new __helpers.CSSHelp(document).getStyle('body'));
|
|
|
|
```
|
|
|
|
|
|
|
|
Your `body` element should have the `background-color` property set to `rgb (184, 132, 46)`.
|
|
|
|
|
|
|
|
```js
|
|
|
|
assert(new __helpers.CSSHelp(document).getStyle('body')?.backgroundColor === 'rgb(184, 132, 46)');
|
|
|
|
```
|
|
|
|
|
|
|
|
# --seed--
|
|
|
|
|
|
|
|
## --seed-contents--
|
|
|
|
|
|
|
|
```html
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2022-03-14 15:54:43 +00:00
|
|
|
<title>Picasso Painting</title>
|
2021-09-07 12:49:42 -07:00
|
|
|
<link rel="stylesheet" type="text/css" href="./styles.css" />
|
|
|
|
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
```
|
|
|
|
|
|
|
|
```css
|
|
|
|
|
|
|
|
--fcc-editable-region--
|
|
|
|
|
|
|
|
--fcc-editable-region--
|
|
|
|
|
|
|
|
```
|