I am trying to make one circle inside of another circle using css, but I am having an issue making it completely centered. I am close, but still not there. Any ideas?
If you want to use only one div to add circle inside circle, then use box-shadow.
div { border-radius: 50%; box-shadow: 0px 0px 0px 10px red, 0px 0px 0px 20px green, 0px 0px 0px 30px yellow, 0px 0px 0px 40px pink; width: 100px; height:100px; margin: 3em; }