Any hint to what I should do right? Test Sorry, your code does not pass. Keep trying. Hint You should set the width of the #back-wall selector to 100%

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

  **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;
.back-wall {
width: 100%;
height: 60%;
}

}
  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.61 Safari/537.36

Challenge: Step 8

Link to the challenge:

Hello there.

Do you have a question?

If so, please edit your post to include it in the Tell us what’s happening section.

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.

You do not need to create a separate class selector. There is already an ID selector in this CSS file. You just need to add height and width in the same ID selector. You have created a separate class selector which is why your code does not run.

so mt test is coming back as failed

Test

Sorry, your code does not pass. Keep trying.

Hint

You should set the width of the #back-wall selector to 100%.

Try this… Let me know if it does not work…

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