2. Taking up space. I don't see what changes when I add display:block to divs

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

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

<In what way does your code behave incorrectly? Include ALL error messages.>

```
  • {
    border: 1px dashed blue;
    }

div {
height: 50px;
width: 100px;
border: 2px solid black;
border-radius: 5px;
display:block;

}

#one {
background-color: #FF0000;
}

#two {
background-color: #0000FF;
}

#three {
background-color: #FFD700;
}

#four {
background-color: #308014;
}

<do not remove the three backticks above>

before

after

divs are block’s by default, so you won’t see any change

Hey i keep including display: block; and after I press save and continue, it keeps bringing the error “Oops, try again”
What can i do???

seems fine, try a different browser. Otherwise create a new topic rather then reviving old ones