Stuck on Lesson 2

<PLEASE USE THIS TEMPLATE TO HELP YOU CREATE A GREAT POST!>

<Below this line, add a link to the EXACT exercise that you are stuck at.>
https://www.codecademy.com/courses/web-beginner-en-UuBLw/0/2?curriculum_id=50579fb998b470000202dc8b

<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>
I have been trying to get passed this lesson, but it is not showing up in the example screen, I tried the ctrl+0, and it didn’t change anything. I have reset the page, I have reset the code and re-typed it, and still I have gotten this error.

I keep getting this error :“Oops, try again. Did you remember to give your div a height of 50px? It looks like it’s 0px”.

```

div {
height: 50px
width: 120px
border-color: #6495ed
background-color: #bcd2ee
border-style: 10px solid
border-width: 2px
}

<do not remove the three backticks above>

you forgot to use ;
A CSS declaration always ends with a semicolon
for example:

div {
    width: 200px;
    height: 50px;
}

I noticed that right after I submitted this, I felt so silly.
Thank you!

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