Step 9- Setting #back-wall to absolute

Tell us what’s happening:
Describe your issue in detail here.
When I set the #back-wall property to absolute, it comes up with the error message. I’m not sure where it went wrong.

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

#back-wall {
background-color: #8B4513;
width: 100%;
height: 60%;
#back-wall {
position: absolute;
}
}
  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:101.0) Gecko/20100101 Firefox/101.0

Challenge: Step 9

Link to the challenge:

you have 2 #back-wall selectors. remove the extra one. Also, it asks that you add 2 other properties and values.

Oh, I see where it went wrong!! Thank you for your reply :slight_smile:

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