round corner for div css code example
Example 1: round div
.circle {
border-radius: 50%;
height: 100px;
width: 100px;
}
Example 2: How to make a round corner in CSS
#roundCornerID {
border-radius: 30%;
width: 200px;
height: 150px;
}