This is so simple. how am I getting it wrong? step 9 rothko

Tell us what’s happening:
Describe your issue in detail here.
I’m adjusting the height to 600px in CSS and it’s not going for me. What am I doing wrong?

  **Your code so far**
/* file: styles.css */
.canvas {
width: 500px;
.canvas{
height: 600px;
}
}
/* file: index.html */
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Rothko Painting</title>
  <link href="./styles.css" rel="stylesheet">
</head>
<body>
  <div class="canvas">
  </div>
</body>
</html>
  **Your browser information:**

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14816.82.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36

Challenge: Step 9

Link to the challenge:

Just figured it out. There were more brackets. I saw it when I review code on here. Thank you

some confusion with brackets. Look carefully, and try to place brackets correctly for each selector

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