how to make a box with rounded edges in css code example
Example 1: how to round the corners of a div outline in css
div {
outline: auto;
outline-style: round;
}
Example 2: css rounded corners
/* Use border-radius property */
.class {
border-radius: 5px;
}
.circle {
border-radius: 50%;
}