Answers for "how to draw circle using html and css"

CSS
0

drawing a circle with css

#it is the border-radius:50; that makes the circle.
.MyCircle{
  width:100px;
  height:100px;
  background-color:blue;
  border-radius:50px;
}
Posted by: Guest on April-21-2021

Browse Popular Code Answers by Language