Learn the CSS Box Model by Building a Rothko Painting - Step 35

Tell us what’s happening:

Describe your issue in detail here.
I am not sure what is wrong with my selector list on step 35. I thought I did it correctly and the hint just says to make a selector list with .one and .two. I tried looking up examples online and from what I can tell I did it correctly, so I am not sure what I am missing.

Your code so far

/* file: styles.css */
.canvas {
  width: 500px;
  height: 600px;
  background-color: #4d0f00;
  overflow: hidden;
  filter: blur(2px);
}

.frame {
  border: 50px solid black;
  width: 500px;
  padding: 50px;
  margin: 20px auto;
}

.one {
  width: 425px;
  height: 150px;
  background-color: #efb762;
  margin: 20px auto;
}

.two {
  width: 475px;
  height: 200px;
  background-color: #8f0401;
  margin: 0 auto 20px;

/* User Editable Region */

.one, .two { 
  filter: blur(1px);
}
 

/* User Editable Region */

.three {
  width: 91%;
  height: 28%;
  background-color: #b20403;
  margin: auto;
}
<!-- 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="frame">
      <div class="canvas">
        <div class="one"></div>
        <div class="two"></div>
        <div class="three"></div>
      </div>
    </div>
  </body>
</html>

Your browser information:

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

Challenge Information:

Learn the CSS Box Model by Building a Rothko Painting - Step 35

1 Like

You appear to have created this post without editing the template. Please edit your post to 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 you say, the more we can help!

I did include a description of the issue I am having so I’m not sure why I got this message. Here is what I wrote:

I am not sure what is wrong with my selector list on step 35. I thought I did it correctly and the hint just says to make a selector list with .one and .two. I tried looking up examples online and from what I can tell I did it correctly, so I am not sure what I am missing.

Hello!
I checked your code and it passed. Try disabling any browser extensions

1 Like

In the challenge editor above class .two selector is missing closing } bracket. You may deleted it mistakenly. Because of that, your challenge is not passing.
@shartmangood

4 Likes

Thank you! That must be what happened! I got it now :slight_smile:

1 Like

Your welcome. Very good, keep it up.

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