how to put rounded corners on div in html code example
Example 1: how to round the corners of a div outline in css
div {
outline: auto;
outline-style: round;
}
Example 2: border radius css
border-radius: 5px; /* The corners will be round */
div {
outline: auto;
outline-style: round;
}
border-radius: 5px; /* The corners will be round */