Learn Intermediate CSS by Building a Picasso Painting - Step 7

Tell us what’s happening:
Describe your issue in detail here.

  **Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html lang="en">
<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>
/* file: styles.css */
body {
background-color: rgb(184, 132, 46);
#back-wall {
background-color: #8B4513;
}


  **Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Safari/605.1.15

Challenge: Learn Intermediate CSS by Building a Picasso Painting - Step 7

Link to the challenge:

Hello there.

Please Tell us what’s happening in your own words.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more information you give us, the more likely we are to be able to help.

Yes I was trying to describe the issue but post accidentally which actually allowed me to see that my body selector was not closed which was creating my issue with the #back-wall selector.

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.