CANNOT complete step 49 in HTML/CSS

I’m working on the CSS lesson building the colored markers. I skipped step 49 because I was not sure what it was asking. I was able to figure it out in the following steps but when I go back or “Resume Project”, it just displays the code. There is nothing else on the screen. I have no idea how to get to 100% completion on this. Step 49 is the only one not completed. This is what I see when I click Resume Project. All other steps are completed.

h1 {
text-align: center;
}

.container {
background-color: rgb(255, 255, 255);
padding: 10px 0;
}

.marker {
width: 200px;
height: 25px;
margin: 10px auto;
}

.red {
background-color: rgb(255, 0, 0);
}

.green {
background-color: #007F00;
}

.blue {
background-color: hsl(240, 100%, 50%);
}

Fully clear your browser cache and website data. Then restart your browser and log back in.

1 Like

That worked! I didn’t even think to clear cache and all of that. Thank you so much!

3 Likes

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