📜  用css代码示例画一个圆

📅  最后修改于: 2022-03-11 14:47:38.133000             🧑  作者: Mango

代码示例2
#it is the border-radius:50; that makes the circle.
.MyCircle{
  width:100px;
  height:100px;
  background-color:blue;
  border-radius:50px;
}