Issue on a lesson. can't finish it

Tell us what’s happening:
Describe your issue in detail here.

—> at lesson Applied Visual Design —> Create a Graphic using CSS (38/52)

Trying to finish/run code for the lesson, even if I set the border-radius to 50px as requested, the system seems not to record the change as it doesnt “pass” me on the border-radius requirement. everything is just fine.

  **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: 50px;
  box-shadow: 25px 10px 0px 0px blue;
}

</style>
<div class="center"></div>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36

Challenge: Create a Graphic Using CSS

Link to the challenge:

You need to read and follow the instructions carefully:

… then set the border-radius property to 50% to make the circular shape.

The value of the border-radius property should be set to 50% .

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