Learn Intermediate CSS by Building a Picasso Painting - Step 7

I’m gettin an error message that my code should have a #back-wall selector, but it does. Any suggestions of what could be the issue here? Thanks in advance for any insights.

#back-wall{
background-color: #8B4513;
}

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 {

/* User Editable Region */

#back-wall{
background-color: #8B4513;
}

/* User Editable Region */


Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36

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

Link to the challenge:

You have deleted the property, its value, and the closing curly brace of the previous ‘body’ selector.

Reset the step.

1 Like