round div code example
Example 1: round div
.circle {
border-radius: 50%;
height: 100px;
width: 100px;
}
Example 2: how to make borders rounded in css
#rcorners {
border-radius: 25px;
}
.circle {
border-radius: 50%;
height: 100px;
width: 100px;
}
#rcorners {
border-radius: 25px;
}