Answers for "how to make a circle shape in 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
0

create circle in css

#div2{
    width: 150px;
    height: 150px;
    border: 3px solid #05ffb0;
    border-radius: 50%;
    padding: 20px;
    text-align: center;
}
Posted by: Guest on October-15-2021

Code answers related to "how to make a circle shape in css"

Browse Popular Code Answers by Language