The border-radius CSS property rounds the corners of an element's outer border edge. You can set a single radius to make circular corners, or two radii to make elliptical corners.
This property is a shorthand for the following CSS properties:
border-top-left-radiusborder-top-right-radiusborder-bottom-right-radiusborder-bottom-left-radius
You may also specify the radiuses in which the corner is rounded by. In other words, the rounding doesn’t have to be perfectly circular, it can be elliptical. This is done using a slash (“/”) between two values.
#example-five {
border-radius: 10px/30px; /* horizontal radius / vertical radius */
}
#example-six {
border-radius: 30px/10px; /* horizontal radius / vertical radius */
}