-moz-outline-radius-topright
-moz-outline-radius-topright
非标准
此功能是非标准的,不处于标准轨道上.。不要在面向Web的生产站点上使用它:它并不适用于每个用户。实现之间也可能存在很大的不兼容性,而且这种行为在未来可能会发生变化。
在Mozilla应用程序中,可以使用-moz-outline-radius-topright
CSS属性将元素的outline
对右上角进行四舍五入。
初始值 | 0 |
---|---|
适用元素 | all elements |
是否是继承属性 | no |
Percentages | refer to the corresponding dimension of the border box |
适用媒体 | visual |
计算值 | as specified |
动画类型 | a length, percentage or calc( |
正规顺序 | the unique non-ambiguous order defined by the formal grammar |
示例
HTML
<p>Look at this paragraph's top-right corner.</p>
CSS
p {
margin: 5px;
border: solid cyan;
outline: dotted red;
-moz-outline-radius-topright: 2em;
}