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

1000 B

id title challengeType dashedName
60b69a66b6ddb80858c5157d Step 7 0 step-7

--description--

Usa un selettore id per assegnare all'elemento back-wall una proprietà background-color di #8B4513.

--hints--

Dovresti usare un selettore #back-wall.

assert(new __helpers.CSSHelp(document).getStyle('#back-wall'));

Il selettore #back-wall dovrebbe avere un background-color di #8B4513.

assert(new __helpers.CSSHelp(document).getStyle('#back-wall')?.backgroundColor === 'rgb(139, 69, 19)');

--seed--

--seed-contents--

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Picasso Painting</title>
    <link rel="stylesheet" href="./styles.css" />
    <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css">
  </head>
  <body>
    <div id="back-wall"></div>
  </body>
</html>
body {
  background-color: rgb(184, 132, 46);
}

--fcc-editable-region--

--fcc-editable-region--