Border-radius property is a css3 property that allows us to make the html elements corners rounded.
It comes with border-radius shorthand property for all four corners simultaneously and using the four individual border-*-radius properties (border-bottom-left-radius, border-top-left-radius, etc.) to create it independently.

An Example of border-radius shorthand property is as follows:

-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;

Leave a Reply

Your email address will not be published. Required fields are marked *