Description

Border-radius is a shorthand property for the four properties border-top-right-radius, border-bottom-right-radius, border-bottom-left-radius, border-top-left-radius
If the value contains a slash the value before the slash sets the horizontal radius and after the slash sets the vertical radius.
Without a slash both Horizontal and vertical radii are equal.
Webkit and gecko based browsers currently support border-radius via proprietary properties as shown in the example below.

Example

div{
  border:solid large red;
  -moz-border-radius: 7px; /* Proprietary Mozilla  based browsers such as Firefox */
  -webkit-border-radius: 7px; /* Proprietary webkit browsers such as safari and Chrome */
  border-radius: 7px;
}

Values
[ <length> | <percentage> ]{1,4} [ / [ <length> | <percentage> ]{1,4} ]?
Introduced in CSS version
3
Applies to elements
All
Inherited
Yes
Browser Support
BrowsersIE ieFirefox firefoxSafari safariOpera operaChrome chrome
Versions94-webkit-10.50-webkit-
Belongs to:

See the full list CSS properties and browser support: CSS Properties