semicircle css code example
Example 1: css circle
#circle {
width: 100px;
height: 100px;
background: red;
border-radius: 50%
}
Example 2: perfect circle css
width: 50px;
height: 50px;
border-radius: 50%;
#circle {
width: 100px;
height: 100px;
background: red;
border-radius: 50%
}
width: 50px;
height: 50px;
border-radius: 50%;