drawing a circle with css code example
Example 1: making a circle css
#circle {
width: 100px;
height: 100px;
background: red;
border-radius: 50%
}
Example 2: how to create a circle with css
<div id="circle">
</div>
#circle {
width: 100px;
height: 100px;
background: red;
border-radius: 50%
}
Example 3: 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;
}