0Create a Graphic Using CSS

Tell us what’s happening:

// running test
The value of the background-color property should be set to transparent.
// tests completed

Your code so far


<style>
.center
{
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 100px;
  
  background-color: #000000;
  border-radius: 50%;
  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_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36.

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

Based on the topics you’ve been creating this morning, I think that you really need to slow down and read instructions more carefully. It’s generally a good idea to read the lesson more than once.

Gotit! Transparently.