make corners round div css code example
Example 1: round div
.circle {
border-radius: 50%;
height: 100px;
width: 100px;
}
Example 2: how to round the corners of a div outline in css
div {
outline: auto;
outline-style: round;
}
.circle {
border-radius: 50%;
height: 100px;
width: 100px;
}
div {
outline: auto;
outline-style: round;
}