CSS Border-Bottom-Right-Radius Property

CSS 1

CSS 2

CSS 3

No No Yes

Description

The two length values of the ‘border-*-radius’ properties define the radii of a quarter ellipse that defines the shape of the corner of the outer border edge. The first value is the horizontal radius. If the second length is omitted it is equal to the first (and the corner is thus a quarter circle). If either length is zero, the corner is square, not rounded.

Syntax

border-bottom-right-radius: [length] [length]

Possible values

  • [length]

Initial Value

0

Applies To

All elements

Inherited

No

Media

Visual

Example

.class {
  border-bottom-right-radius: 3em, 0.5em;
}


View All CSS Properties