W3cubDocs

/CSS

-moz-outline-radius-bottomright

Non-standard
This feature is non-standard and is not on a standards track. Do not use it on production sites facing the Web: it will not work for every user. There may also be large incompatibilities between implementations and the behavior may change in the future.

In Mozilla applications, the -moz-outline-radius-bottomright CSS property can be used to round the bottom-right corner of an element's outline.

Initial value 0
Applies to all elements
Inherited no
Percentages refer to the corresponding dimension of the border box
Media visual
Computed value as specified
Animation type a length, percentage or calc();
Canonical order the unique non-ambiguous order defined by the formal grammar

Example

HTML

<p>Look at this paragraph's bottom-right corner.</p>

CSS

p {
  margin: 5px;
  border: solid cyan;
  outline: dotted red;
  -moz-outline-radius-bottomright: 2em;
}

Result

See also

© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/CSS/-moz-outline-radius-bottomright