-moz-outline-radius-bottomright
非标准: 该特性是非标准的,请尽量不要在生产环境中使用它!
在 Mozilla 应用中,-moz-outline-radius-bottomright
CSS 属性用于设置元素的左下角outline
圆角。
初始值 | 0 |
---|---|
适用元素 | all elements |
是否是继承属性 | 否 |
Percentages | refer to the corresponding dimension of the border box |
计算值 | as specified |
Animation type | a length, percentage or calc(); |
示例
HTML
<p>看这段话的右下角。</p>
CSS
p {
margin: 5px;
border: solid cyan;
outline: dotted red;
-moz-outline-radius-bottomright: 2em;
}
结果
参见
- 更多信息参见
-moz-outline-radius
属性。