freeCodeCamp/curriculum/challenges/italian/14-responsive-web-design-22/learn-intermediate-css-by-b.../60b69a66b6ddb80858c5157b.md

959 B

id title challengeType dashedName
60b69a66b6ddb80858c5157b Step 5 0 step-5

--description--

Per iniziare il dipinto, assegna all'elemento body una proprietà background-color con il valore rgb(184, 132, 46).

--hints--

Dovresti usare un selettore body.

assert(new __helpers.CSSHelp(document).getStyle('body'));

L'elemento body dovrebbe avere la proprietà background-color impostata su rgb (184, 132, 46).

assert(new __helpers.CSSHelp(document).getStyle('body')?.backgroundColor === 'rgb(184, 132, 46)');

--seed--

--seed-contents--

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Picasso Painting</title>
    <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>

--fcc-editable-region--

--fcc-editable-region--