css border radius w3schools code example
Example 1: border radius css
border-radius: 10px;
border-radius: 10px 5%;
border-radius: 2px 4px 2px;
border-radius: 1px 0 3px 4px;
border-radius: 10px / 20px;
Example 2: how to round the corners of a div outline in css
div {
outline: auto;
outline-style: round;
}
Example 3: How to make a round corner in CSS
#roundCornerID {
border-radius: 30%;
width: 200px;
height: 150px;
}
Example 4: css border radius
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;