w3school css border radius code example
Example 1: css border radius
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
Example 2: button edges rounded css
button {
border-radius: 25px;
}
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
button {
border-radius: 25px;
}