Create a Graphic Using CSS pls help

Tell us what’s happening:

Your code so far


<style>
.center
{
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 100px;
  
  background-color: transparent;
  border-radius: 50%;
  box-shadow :25px 10px 0px 0px blue;  
}

</style>
<div class="center"></div>


**Link to the challenge:**
https://learn.freecodecamp.org/responsive-web-design/applied-visual-design/create-a-graphic-using-css/

Why it isn't work?

It’s probably the extra space between shadow and the : column.
I wasn’t able to pass the challenge with your code, but once removed it worked.

1 Like

I passed it. That won’t be a problem. There was a bug. But thanks you a lot!