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

930 B

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

--description--

Para começar com a pintura, dê ao elemento body uma background-color de rgb(184, 132, 46).

--hints--

Você deve usar o seletor body.

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

O elemento body deve ter a propriedade background-color definida como 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--